diff --git a/code/__defines/planets.dm b/code/__defines/planets.dm index 3579cc804d..0217a0ef1e 100644 --- a/code/__defines/planets.dm +++ b/code/__defines/planets.dm @@ -13,6 +13,8 @@ #define WEATHER_ASH_STORM "ash storm" // Ripped from TG, like the above. Less harmless. #define WEATHER_ASH_STORM_SAFE "light ash storm" //Safe version of the ash storm. Dimmer. #define WEATHER_FALLOUT "fallout" // Modified emberfall, actually harmful. Admin only. +#define WEATHER_FALLOUT_TEMP "short-term fallout" // Nuclear fallout that actually ends. Firework-only +#define WEATHER_CONFETTI "confetti" // Firework-only #define MOON_PHASE_NEW_MOON "new moon" #define MOON_PHASE_WAXING_CRESCENT "waxing crescent" diff --git a/code/datums/outfits/outfit.dm b/code/datums/outfits/outfit.dm index 62647c55c0..74cb76871b 100644 --- a/code/datums/outfits/outfit.dm +++ b/code/datums/outfits/outfit.dm @@ -41,7 +41,7 @@ var/list/outfits_decls_by_type_ var/l_hand = null // In the list(path=count,otherpath=count) format var/list/uniform_accessories = list() // webbing, armbands etc - fits in slot_tie - var/list/backpack_contents = list() + var/list/backpack_contents = list() var/id_type var/id_desc diff --git a/code/datums/supplypacks/misc.dm b/code/datums/supplypacks/misc.dm index e2ff8049c9..bb71372f49 100644 --- a/code/datums/supplypacks/misc.dm +++ b/code/datums/supplypacks/misc.dm @@ -153,6 +153,7 @@ containertype = /obj/structure/closet/crate/thinktronic containername = "Holoplant crate" +/* CHOMPedit, moved to medical.dm in modular folder /datum/supply_pack/misc/glucose_hypos name = "Glucose Hypoinjectors" contains = list( @@ -161,7 +162,7 @@ cost = 25 containertype = /obj/structure/closet/crate/zenghu containername = "Glucose Hypo Crate" - +*/ /datum/supply_pack/misc/mre_rations num_contained = 6 name = "Emergency - MREs" diff --git a/code/datums/supplypacks/misc_vr.dm b/code/datums/supplypacks/misc_vr.dm index 8118ff0ab1..67cdfbb562 100644 --- a/code/datums/supplypacks/misc_vr.dm +++ b/code/datums/supplypacks/misc_vr.dm @@ -176,3 +176,10 @@ access_pilot ) one_access = TRUE + +/datum/supply_pack/misc/swoopie //CHOMPAdd + name = "SWOOPIE XL CleanBot Kit" + contains = list() + cost = 100 + containertype = /obj/structure/largecrate/animal/swoopie + containername = "SWOOPIE XL CleanBot Starter Kit" \ No newline at end of file diff --git a/code/game/area/Space Station 13 areas_ch.dm b/code/game/area/Space Station 13 areas_ch.dm index 4d69fe8e4e..e6cd444b5d 100644 --- a/code/game/area/Space Station 13 areas_ch.dm +++ b/code/game/area/Space Station 13 areas_ch.dm @@ -114,3 +114,7 @@ /area/medical/cryo/autoresleeve name = "\improper Medical Autoresleeving" forbid_events = TRUE + +/area/rnd/research/particleaccelerator + name = "\improper Particle Accelerator Lab" + icon_state = "toxlab" \ No newline at end of file diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 63f8a702e0..ed7b64dfca 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -427,9 +427,10 @@ var/global/datum/controller/occupations/job_master // Try desperately (and sorta poorly) to equip the item. Now with increased desperation! if(G.slot && !(G.slot in custom_equip_slots)) var/metadata = H.client.prefs.gear[G.display_name] - if(G.slot == slot_wear_mask || G.slot == slot_wear_suit || G.slot == slot_head) - custom_equip_leftovers += thing - else if(H.equip_to_slot_or_del(G.spawn_item(H, metadata), G.slot)) + //if(G.slot == slot_wear_mask || G.slot == slot_wear_suit || G.slot == slot_head) + // custom_equip_leftovers += thing + //else + if(H.equip_to_slot_or_del(G.spawn_item(H, metadata), G.slot)) to_chat(H, "Equipping you with \the [thing]!") if(G.slot != slot_tie) custom_equip_slots.Add(G.slot) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 645168b041..688f535f00 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -394,7 +394,7 @@ var/list/global/slot_flags_enumeration = list( //If you are making custom procs but would like to retain partial or complete functionality of this one, include a 'return ..()' to where you want this to happen. //Set disable_warning to 1 if you wish it to not give you outputs. //Should probably move the bulk of this into mob code some time, as most of it is related to the definition of slots and not item-specific -/obj/item/proc/mob_can_equip(M as mob, slot, disable_warning = FALSE) +/obj/item/proc/mob_can_equip(M as mob, slot, disable_warning = FALSE, var/ignore_obstruction = FALSE) if(!slot) return 0 if(!M) return 0 @@ -420,7 +420,7 @@ var/list/global/slot_flags_enumeration = list( //Next check if the slot is accessible. var/mob/_user = disable_warning? null : H - if(!H.slot_is_accessible(slot, src, _user)) + if(!H.slot_is_accessible(slot, src, _user) && !ignore_obstruction) return 0 //Lastly, check special rules for the desired slot. diff --git a/code/game/objects/items/devices/ticket_printer.dm b/code/game/objects/items/devices/ticket_printer.dm index 8817c7ec87..971580295b 100644 --- a/code/game/objects/items/devices/ticket_printer.dm +++ b/code/game/objects/items/devices/ticket_printer.dm @@ -3,6 +3,7 @@ desc = "It prints security citations!" icon = 'icons/obj/device_vr.dmi' icon_state = "sec_ticket_printer" + slot_flags = SLOT_BELT | SLOT_HOLSTER var/print_cooldown = 1 MINUTE var/last_print diff --git a/code/game/objects/items/weapons/cosmetics.dm b/code/game/objects/items/weapons/cosmetics.dm index 5e93f2d031..e2d9ad6a49 100644 --- a/code/game/objects/items/weapons/cosmetics.dm +++ b/code/game/objects/items/weapons/cosmetics.dm @@ -56,7 +56,7 @@ else user.visible_message("[user] begins to do [H]'s lips with \the [src].", \ "You begin to apply \the [src].") - if(do_after(user, 20) && do_after(H, 20, 5, 0)) //user needs to keep their active hand, H does not. + if(do_after(user, 20, H)) //user needs to keep their active hand, H does not. user.visible_message("[user] does [H]'s lips with \the [src].", \ "You apply \the [src].") H.lip_style = colour diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm index 97da55c4ff..3ee2e0046e 100644 --- a/code/game/objects/items/weapons/storage/egg_vr.dm +++ b/code/game/objects/items/weapons/storage/egg_vr.dm @@ -15,6 +15,7 @@ show_messages = 0 allow_quick_empty = TRUE use_sound = 'sound/items/drop/flesh.ogg' + var/egg_name = null //CHOMPAdd /obj/item/weapon/storage/vore_egg/Initialize() . = ..() diff --git a/code/game/objects/items/weapons/tape.dm b/code/game/objects/items/weapons/tape.dm index 5db107b130..c75c154e7d 100644 --- a/code/game/objects/items/weapons/tape.dm +++ b/code/game/objects/items/weapons/tape.dm @@ -16,7 +16,7 @@ for (var/obj/item/weapon/grab/G in H.grabbed_by) if (G.loc == user && G.state >= GRAB_AGGRESSIVE) return TRUE - + return FALSE /obj/item/weapon/tape_roll/attack(var/mob/living/carbon/human/H, var/mob/user) @@ -53,7 +53,7 @@ return user.visible_message("\The [user] has taped up \the [H]'s eyes!") - H.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/blindfold/tape(H), slot_glasses) + H.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/blindfold/tape(H), slot_glasses, ignore_obstructions = FALSE) H.update_inv_glasses() playsound(src, 'sound/effects/tape.ogg',25) @@ -83,7 +83,7 @@ user.visible_message("\The [user] has taped up \the [H]'s mouth!") - H.equip_to_slot_or_del(new /obj/item/clothing/mask/muzzle/tape(H), slot_wear_mask) + H.equip_to_slot_or_del(new /obj/item/clothing/mask/muzzle/tape(H), slot_wear_mask, ignore_obstructions = FALSE) H.update_inv_wear_mask() playsound(src, 'sound/effects/tape.ogg',25) diff --git a/code/game/objects/structures/low_wall.dm b/code/game/objects/structures/low_wall.dm index f5484593c7..168ebb33ca 100644 --- a/code/game/objects/structures/low_wall.dm +++ b/code/game/objects/structures/low_wall.dm @@ -81,7 +81,7 @@ return // Making windows, different per subtype - else if(istype(W, /obj/item/stack/material/glass)) + else if(istype(W, /obj/item/stack/material/glass) || istype(W, /obj/item/stack/material/cyborg/glass)) handle_glass_use(user, W) return diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 45625c3990..002cdd76f5 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -970,12 +970,15 @@ desc = "Flashy and pretty." icon = 'icons/obj/christmas.dmi' icon_state = "xmaslights" + layer = 4.9 + plane = PLANE_LIGHTING_ABOVE /obj/structure/sign/christmas/wreath name = "wreath" desc = "Prickly and festive." icon = 'icons/obj/christmas.dmi' icon_state = "doorwreath" + layer = 5 /obj/structure/sign/hostilefauna icon = 'icons/obj/decals_vr.dmi' diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 8e9101d3b9..24183421f6 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -252,6 +252,12 @@ var/list/flooring_types 'sound/effects/footstep/snow4.ogg', 'sound/effects/footstep/snow5.ogg')) +/decl/flooring/snow/fake + desc = "A coating of fake snow, looks surprisingly realistic, though not as cold as the real thing." + icon = 'icons/turf/flooring/fakesnow.dmi' + icon_base = "snow" + flags = TURF_HAS_EDGES | TURF_HAS_CORNERS | TURF_REMOVE_SHOVEL + /decl/flooring/snow/snow2 name = "snow" desc = "A layer of many tiny bits of frozen water. It's hard to tell how deep it is." diff --git a/code/game/turfs/flooring/flooring_premade.dm b/code/game/turfs/flooring/flooring_premade.dm index d0556fb59e..f0d57fb1d4 100644 --- a/code/game/turfs/flooring/flooring_premade.dm +++ b/code/game/turfs/flooring/flooring_premade.dm @@ -489,6 +489,12 @@ initial_flooring = /decl/flooring/snow var/list/crossed_dirs = list() +/turf/simulated/floor/fakesnow + name = "fake snow" + icon = 'icons/turf/outdoors.dmi' + icon_state = "snow" + initial_flooring = /decl/flooring/snow/fake + /turf/simulated/floor/snow/snow2 name = "snow" icon = 'icons/turf/snow.dmi' diff --git a/code/game/turfs/simulated/outdoors/snow.dm b/code/game/turfs/simulated/outdoors/snow.dm index e7d1afa545..bd6eacb595 100644 --- a/code/game/turfs/simulated/outdoors/snow.dm +++ b/code/game/turfs/simulated/outdoors/snow.dm @@ -79,3 +79,4 @@ icon_state = "ice" desc = "Looks slippery." movement_cost = 4 + edge_blending_priority = 0 diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index e453842124..10b4bc7cc9 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -652,6 +652,21 @@ message_admins(log) log_admin(log) +/datum/admins/proc/toggle_firework_override() + set category = "Fun" + set name = "Toggle Weather Firework Override" + set desc = "Toggles ability for weather fireworks to affect weather on planet of choice." + + if(!check_rights(R_DEBUG)) + return + + var/datum/planet/planet = tgui_input_list(usr, "Which planet do you want to toggle firework effects on?", "Change Weather", SSplanets.planets) + if(istype(planet) && planet.weather_holder) + planet.weather_holder.firework_override = !(planet.weather_holder.firework_override) + var/log = "[key_name(src)] toggled [planet.name]'s firework override to [planet.weather_holder.firework_override ? "on" : "off"]." + message_admins(log) + log_admin(log) + /datum/admins/proc/change_time() set category = "Debug" set name = "Change Planet Time" diff --git a/code/modules/admin/verbs/smite_vr.dm b/code/modules/admin/verbs/smite_vr.dm index f1a1a08deb..fc8452831c 100644 --- a/code/modules/admin/verbs/smite_vr.dm +++ b/code/modules/admin/verbs/smite_vr.dm @@ -130,7 +130,7 @@ if(SMITE_AD_SPAM) if(target.client) - create_fake_ad_popup_multiple(/obj/screen/popup/default, 15) + target.client.create_fake_ad_popup_multiple(/obj/screen/popup/default, 15) else return //Injection? Don't print any messages. diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index d877793039..fa84225b27 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -405,14 +405,17 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O var/obj/item/organ/external/O = character.organs_by_name[N] O.markings.Cut() + var/priority = 0 for(var/M in pref.body_markings) + priority += 1 var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[M] var/mark_color = "[pref.body_markings[M]]" for(var/BP in mark_datum.body_parts) var/obj/item/organ/external/O = character.organs_by_name[BP] if(O) - O.markings[M] = list("color" = mark_color, "datum" = mark_datum) + O.markings[M] = list("color" = mark_color, "datum" = mark_datum, "priority" = priority) + character.markings_len = priority var/list/last_descriptors = list() if(islist(pref.body_descriptors)) diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index 631c46bdf5..39ca0b8c74 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -92,13 +92,13 @@ //Orange emergency space suit /obj/item/clothing/head/helmet/space/emergency - name = "Emergency Space Helmet" + name = "emergency soft helmet" icon_state = "syndicate-helm-orange" desc = "A simple helmet with a built in light, smells like mothballs." flash_protection = FLASH_PROTECTION_NONE /obj/item/clothing/suit/space/emergency - name = "Emergency Softsuit" + name = "emergency softsuit" icon_state = "syndicate-orange" desc = "A thin, ungainly softsuit colored in blaze orange for rescuers to easily locate, looks pretty fragile." slowdown = 2 diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm index 101df4b4dc..114c01f912 100644 --- a/code/modules/economy/vending_machines.dm +++ b/code/modules/economy/vending_machines.dm @@ -284,7 +284,7 @@ /obj/item/weapon/reagent_containers/food/snacks/fruitbar = 16, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 8, /obj/item/weapon/reagent_containers/pill/diet = 8, - ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, //CHOMPedit nah /obj/item/weapon/towel/random = 8, /obj/item/toy/tennis = 4) @@ -296,7 +296,7 @@ /obj/item/weapon/reagent_containers/food/snacks/fruitbar = 5, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 5, /obj/item/weapon/reagent_containers/pill/diet = 25, - ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //CHOMPedit nah /obj/item/weapon/towel/random = 20, /obj/item/toy/tennis = 15) //VOREStation Edit End diff --git a/code/modules/fireworks/firework_launcher.dm b/code/modules/fireworks/firework_launcher.dm new file mode 100644 index 0000000000..26044f2445 --- /dev/null +++ b/code/modules/fireworks/firework_launcher.dm @@ -0,0 +1,124 @@ +/obj/machinery/firework_launcher + name = "firework launcher" + desc = "A machine for launching fireworks of varying practicality." + icon = 'icons/obj/machines/firework_launcher.dmi' + icon_state = "launcher01" + density = TRUE + anchored = TRUE + + circuit = /obj/item/weapon/circuitboard/firework_launcher + var/obj/item/weapon/firework_star/loaded_star + var/last_launch + var/launch_cooldown = 5 MINUTES + +/obj/machinery/firework_launcher/Initialize() + . = ..() + + default_apply_parts() + last_launch = world.time // Prevents cheesing cooldown by deconstructing and reconstructing + update_icon() + +/obj/machinery/firework_launcher/RefreshParts() + launch_cooldown = 5 MINUTES + var/rating = 0 + for(var/obj/item/weapon/stock_parts/micro_laser/laser in component_parts) + rating += laser.rating - 1 + launch_cooldown = max(0, (launch_cooldown - ((rating*30) SECONDS))) // For every part tier above 1 on the two lasers, reduce cooldown by 30 seconds. 1 minute cooldown on the tier 5 parts, 3 minutes on tier 3. + + . = ..() + +/obj/machinery/firework_launcher/update_icon() + icon_state = "launcher[loaded_star ? "1" : "0"][anchored ? "1" : "0"][panel_open ? "_open" : ""]" + +/obj/machinery/firework_launcher/attackby(var/obj/item/O, var/mob/user) + if(default_deconstruction_screwdriver(user, O)) + update_icon() + return + + if(default_deconstruction_crowbar(user, O)) + return + + if(default_part_replacement(user, O)) + return + + if(default_unfasten_wrench(user, O, 20)) + update_icon() + return + + if(istype(O, /obj/item/weapon/firework_star)) + loaded_star = O + user.drop_item() + O.forceMove(src) + to_chat(user, "You insert the firework star into the launcher.") + add_fingerprint(user) + update_icon() + return + + return ..() + +/obj/machinery/firework_launcher/verb/eject() + set category = "Object" + set name = "Eject Firework Star" + set src in oview(1) + + var/mob/living/user = usr + if(!user || user.stat != 0) + return + if(!loaded_star) + to_chat(user, "There is no firework star loaded in the launcher.") + return + else + loaded_star.forceMove(get_turf(src)) + loaded_star = null + add_fingerprint(user) + update_icon() + +/obj/machinery/firework_launcher/attack_hand(mob/user) // Maybe this proc could be better as entirely its own proc, called from attack_hand, but also I don't really see the point + if(panel_open) + to_chat(user, "Close the panel first!") + return + + if(!loaded_star) + to_chat(user, "There is no firework star loaded in the launcher.") + return + + if((world.time - last_launch) <= launch_cooldown) + to_chat(user, "The launcher is still re-priming for launch.") + return + + if(!anchored) + to_chat(user, "Launcher must be firmly secured to the ground before firework can be launched!") + return + + var/datum/planet/P = get_planet() + if(!P || !(P.weather_holder)) // There are potential cases of being outside but not on planet. And checking whether planet has weather at all is more sanity thing than anything. + to_chat(user, "Launcher beeps as its safeties seem to prevent launch in the current location.") + return + + var/datum/weather_holder/WH = P.weather_holder + if(WH.firework_override && istype(loaded_star, /obj/item/weapon/firework_star/weather)) // Enable weather-based events to not be ruined + to_chat(user, "Launcher beeps as it seems some interference is preventing launch of this type of firework.") + return + + to_chat(user, "You launch the firework!") + playsound(get_turf(src), 'sound/weapons/rpg.ogg', 75, 1) + loaded_star.trigger_firework(WH) + qdel(loaded_star) + loaded_star = null + last_launch = world.time + add_fingerprint(user) + update_icon() + flick("launcher_launch", src) + +/obj/machinery/firework_launcher/proc/get_planet() + var/turf/T = get_turf(src) + if(!T) + return + + if(!T.is_outdoors()) + return + + var/datum/planet/P = SSplanets.z_to_planet[T.z] + if(!P) + return + return P \ No newline at end of file diff --git a/code/modules/fireworks/firework_stars.dm b/code/modules/fireworks/firework_stars.dm new file mode 100644 index 0000000000..a276539424 --- /dev/null +++ b/code/modules/fireworks/firework_stars.dm @@ -0,0 +1,142 @@ +#define T_FIREWORK_WEATHER_STAR(name) "weather firework star (" + (name) + ")" + +/obj/item/weapon/firework_star + icon = 'icons/obj/firework_stars.dmi' + name = "firework star" + desc = "A very tightly compacted ball of chemicals for use with firework launcher." + icon_state = "star" + w_class = ITEMSIZE_SMALL + origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 1) + +/obj/item/weapon/firework_star/proc/trigger_firework(var/datum/weather_holder/w_holder) + return + + +/obj/item/weapon/firework_star/weather + name = "weather firework star" + desc = "A firework star designed to alter a weather, rather than put on a show." + var/weather_type + origin_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 2) + +/obj/item/weapon/firework_star/weather/trigger_firework(var/datum/weather_holder/w_holder) + if(!w_holder) // Sanity + return + if(w_holder.firework_override) // Make sure weather-based events can't be interfered with + return + if(weather_type && (weather_type in w_holder.allowed_weather_types)) + w_holder.message_all_outdoor_players("Something seems to flash in the sky, as weather suddenly shifts!") + w_holder.change_weather(weather_type) + w_holder.rebuild_forecast() + +/obj/item/weapon/firework_star/weather/clear + name = T_FIREWORK_WEATHER_STAR("CLEAR SKY") + weather_type = WEATHER_CLEAR + icon_state = "clear" + +/obj/item/weapon/firework_star/weather/overcast + name = T_FIREWORK_WEATHER_STAR("CLOUDY") + weather_type = WEATHER_OVERCAST + icon_state = "cloudy" + +/obj/item/weapon/firework_star/weather/rain + name = T_FIREWORK_WEATHER_STAR("RAIN") + weather_type = WEATHER_RAIN + icon_state = "rain" + +/obj/item/weapon/firework_star/weather/storm + name = T_FIREWORK_WEATHER_STAR("STORM") + weather_type = WEATHER_STORM + icon_state = "rain" + +/obj/item/weapon/firework_star/weather/light_snow + name = T_FIREWORK_WEATHER_STAR("SNOW - LIGHT") + weather_type = WEATHER_LIGHT_SNOW + icon_state = "snow" + +/obj/item/weapon/firework_star/weather/snow + name = T_FIREWORK_WEATHER_STAR("SNOW - MEDIUM") + weather_type = WEATHER_SNOW + icon_state = "snow" + +/obj/item/weapon/firework_star/weather/blizzard + name = T_FIREWORK_WEATHER_STAR("SNOW - HEAVY") + weather_type = WEATHER_BLIZZARD + icon_state = "snow" + +/obj/item/weapon/firework_star/weather/hail + name = T_FIREWORK_WEATHER_STAR("HAIL") + weather_type = WEATHER_HAIL + icon_state = "snow" + origin_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 2, TECH_ILLEGAL = 1) + +/obj/item/weapon/firework_star/weather/fallout + name = T_FIREWORK_WEATHER_STAR("NUCLEAR") + desc = "This is the worst idea ever." + weather_type = WEATHER_FALLOUT_TEMP + icon_state = "nuclear" + origin_tech = list(TECH_MATERIAL = 7, TECH_ENGINEERING = 3, TECH_ILLEGAL = 5) + +/obj/item/weapon/firework_star/weather/confetti + name = T_FIREWORK_WEATHER_STAR("CONFETTI") + desc = "A firework star designed to alter a weather, rather than put on a show. This one makes colorful confetti rain from the sky." + weather_type = WEATHER_CONFETTI + icon_state = "confetti" + + +/obj/item/weapon/firework_star/aesthetic + name = "aesthetic firework star" + desc = "A firework star designed to paint the sky with pretty lights." + var/list/firework_adjectives = list("beautiful", "pretty", "fancy", "colorful", "bright", "shimmering") + var/list/firework_colors = list("red", "orange", "yellow", "green", "cyan", "blue", "purple", "pink", "beige", "white") + +/obj/item/weapon/firework_star/aesthetic/trigger_firework(var/datum/weather_holder/w_holder) + if(!w_holder) + return + w_holder.message_all_outdoor_players(get_firework_message()) + +/obj/item/weapon/firework_star/aesthetic/proc/get_firework_message() + return "You see a [pick(firework_adjectives)] explosion of [pick(firework_colors)] sparks in the sky!" + +/obj/item/weapon/firework_star/aesthetic/configurable + name = "configurable aesthetic firework star" + desc = "A firework star designed to paint the sky with pretty lights. This one's advanced and can be configured to specific shapes or colors." + icon_state = "config" + var/current_color = "white" + var/current_shape = "Random" + var/list/firework_shapes = list("none", "Random", + "a circle", "an oval", "a triangle", "a square", "a pentagon", "a hexagon", "an octagon", "a plus sign", "an x", "a star", "a spiral", "a heart", "a teardrop", + "a smiling face", "a winking face", "a mouse", "a cat", "a dog", "a fox", "a bird", "a fish", "a lizard", "a bug", "a butterfly", "a robot", "a dragon", "a teppi", "a catslug", + "a tree", "a leaf", "a flower", "a lightning bolt", "a cloud", "a sun", "a gemstone", "a flame", "a wrench", "a beaker", "a syringe", "a pickaxe", "a pair of handcuffs", "a crown", + "a bottle", "a boat", "a spaceship", + "Nanotrasen logo", "a geometric-looking letter S", "a dodecahedron") + +/obj/item/weapon/firework_star/aesthetic/configurable/attack_self(var/mob/user) + var/choice = tgui_alert(usr, "What setting do you want to adjust?", "Firework Star", list("Color", "Shape", "Nothing")) + if(src.loc != user) + return + + if(choice == "Color") + var/color_choice = tgui_input_list(user, "What color would you like firework to be?", "Firework Star", firework_colors) + if(src.loc != user) + return + if(color_choice) + current_color = color_choice + + if(choice == "Shape") + var/shape_choice = tgui_input_list(user, "What shape would you like firework to be?", "Firework Star", firework_shapes) + if(src.loc != user) + return + if(shape_choice) + current_shape = shape_choice + +/obj/item/weapon/firework_star/aesthetic/configurable/get_firework_message() + var/temp_shape = current_shape + if(temp_shape == "Random") + var/list/shapes_copy = firework_shapes.Copy() + shapes_copy -= "Random" + temp_shape = pick(shapes_copy) + + if(temp_shape == "none" || !temp_shape) + return "You see a [pick(firework_adjectives)] explosion of [current_color] sparks in the sky!" + else + return "You see a [pick(firework_adjectives)] explosion of [current_color] sparks in the sky, forming into shape of [current_shape]!" \ No newline at end of file diff --git a/code/modules/fireworks/launcher_construction.dm b/code/modules/fireworks/launcher_construction.dm new file mode 100644 index 0000000000..6ee8178694 --- /dev/null +++ b/code/modules/fireworks/launcher_construction.dm @@ -0,0 +1,8 @@ +/obj/item/weapon/circuitboard/firework_launcher + name = T_BOARD("firework launcher") + board_type = new /datum/frame/frame_types/machine + build_path = /obj/machinery/firework_launcher + origin_tech = list(TECH_MATERIAL = 4, TECH_ENGINEERING = 2) + req_components = list ( + /obj/item/weapon/stock_parts/micro_laser = 2 + ) \ No newline at end of file diff --git a/code/modules/food/drinkingglass/metaglass_vr.dm b/code/modules/food/drinkingglass/metaglass_vr.dm index 06abdba8c1..fe86ff962a 100644 --- a/code/modules/food/drinkingglass/metaglass_vr.dm +++ b/code/modules/food/drinkingglass/metaglass_vr.dm @@ -234,3 +234,8 @@ /datum/reagent/ethanol/angelskiss glass_icon_file = 'icons/obj/drinks_vr.dmi' + +/datum/reagent/ethanol/burnout + glass_icon_state = "burnout" + glass_center_of_mass = list("x"=16, "y"=8) + glass_icon_file = 'icons/obj/drinks_vr.dmi' diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index 761ea37154..1f0ca2f085 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -47,10 +47,10 @@ var/list/slot_equipment_priority = list( \ //set del_on_fail to have it delete W if it fails to equip //set disable_warning to disable the 'you are unable to equip that' warning. //unset redraw_mob to prevent the mob from being redrawn at the end. -/mob/proc/equip_to_slot_if_possible(obj/item/W as obj, slot, del_on_fail = 0, disable_warning = 0, redraw_mob = 1) +/mob/proc/equip_to_slot_if_possible(obj/item/W as obj, slot, del_on_fail = 0, disable_warning = 0, redraw_mob = 1, ignore_obstructions = 1) if(!W) return 0 - if(!W.mob_can_equip(src, slot, disable_warning)) + if(!W.mob_can_equip(src, slot, disable_warning, ignore_obstructions)) if(del_on_fail) qdel(W) @@ -68,8 +68,8 @@ var/list/slot_equipment_priority = list( \ return //This is just a commonly used configuration for the equip_to_slot_if_possible() proc, used to equip people when the rounds tarts and when events happen and such. -/mob/proc/equip_to_slot_or_del(obj/item/W as obj, slot) - return equip_to_slot_if_possible(W, slot, 1, 1, 0) +/mob/proc/equip_to_slot_or_del(obj/item/W as obj, slot, ignore_obstructions = 1) + return equip_to_slot_if_possible(W, slot, 1, 1, 0, ignore_obstructions) //hurgh. these feel hacky, but they're the only way I could get the damn thing to work. I guess they could be handy for antag spawners too? /mob/proc/equip_voidsuit_to_slot_or_del_with_refit(obj/item/clothing/suit/space/void/W as obj, slot, species = SPECIES_HUMAN) diff --git a/code/modules/mob/living/carbon/human/ai_controlled/ai_controlled_vr.dm b/code/modules/mob/living/carbon/human/ai_controlled/ai_controlled_vr.dm new file mode 100644 index 0000000000..1dbd38868c --- /dev/null +++ b/code/modules/mob/living/carbon/human/ai_controlled/ai_controlled_vr.dm @@ -0,0 +1,2 @@ +/mob/living/carbon/human/ai_controlled + sensorpref = 1 diff --git a/code/modules/mob/living/carbon/human/human_defines_vr.dm b/code/modules/mob/living/carbon/human/human_defines_vr.dm index 69a008029c..39c4f11cbc 100644 --- a/code/modules/mob/living/carbon/human/human_defines_vr.dm +++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm @@ -9,6 +9,7 @@ var/sensorpref = 5 //Suit sensor loadout pref var/wings_hidden = FALSE var/tail_hidden = FALSE + var/markings_len = 0 //mostly an arbitrary number /mob/living/carbon/human/proc/shadekin_get_energy() var/datum/species/shadekin/SK = species diff --git a/code/modules/mob/living/carbon/human/human_helpers_vr.dm b/code/modules/mob/living/carbon/human/human_helpers_vr.dm index b8e9d75b30..14ed52bd8c 100644 --- a/code/modules/mob/living/carbon/human/human_helpers_vr.dm +++ b/code/modules/mob/living/carbon/human/human_helpers_vr.dm @@ -7,3 +7,116 @@ var/static/icon/ingame_hud_med_vr = icon('icons/mob/hud_med_vr.dmi') hud_list[STATUS_R_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_STATUS_R) hud_list[BACKUP_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_BACKUP) hud_list[VANTAG_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_VANTAG) + +/mob/living/carbon/human/proc/remove_marking(var/datum/sprite_accessory/marking/mark_datum) + if (!mark_datum) + return FALSE + var/successful = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O) + successful = O.markings.Remove(mark_datum.name) || successful + if (successful) + markings_len -= 1 + update_dna() + update_icons_body() + return TRUE + return FALSE + +/mob/living/carbon/human/proc/add_marking(var/datum/sprite_accessory/marking/mark_datum, var/mark_color = "#000000") + if (!mark_datum) + return FALSE + var/success = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O) + success = TRUE + O.markings[mark_datum.name] = list("color" = mark_color, "datum" = mark_datum, "priority" = markings_len + 1) + if (success) + markings_len += 1 + update_dna() + update_icons_body() + return success + +/mob/living/carbon/human/proc/change_priority_of_marking(var/datum/sprite_accessory/marking/mark_datum, var/move_down, var/swap = TRUE) //move_down should be true/false + if (!mark_datum) + return FALSE + var/change = move_down ? 1 : -1 + var/success = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O) + var/index = O.markings.Find(mark_datum.name) + if (!index) + continue + var/change_from = O.markings[mark_datum.name]["priority"] + if (change_from == clamp(change_from + change, 1, markings_len)) + continue + if (!success) + success = TRUE + change_priority_marking_to_priority(change_from + change, change_from) + O.markings[mark_datum.name]["priority"] = clamp(change_from + change, 1, markings_len) + if ((move_down && index == O.markings.len) || (!move_down && index == 1)) + continue + if (O.markings[O.markings[index + change]]["priority"] == change_from) + moveElement(O.markings, index, index+(move_down ? 2 : -1)) + if (success) + update_dna() + update_icons_body() + return TRUE + +/mob/living/carbon/human/proc/change_priority_marking_to_priority(var/priority, var/to_priority) + for (var/obj/item/organ/external/O in organs) + for (var/marking in O.markings) + if (O.markings[marking]["priority"] == priority) + O.markings[marking]["priority"] = to_priority + +/mob/living/carbon/human/proc/change_marking_color(var/datum/sprite_accessory/marking/mark_datum, var/mark_color = "#000000") + if (!mark_datum) + return FALSE + var/success = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O && O.markings[mark_datum.name] && O.markings[mark_datum.name]["color"] != mark_color) + success = TRUE + O.markings[mark_datum.name]["color"] = mark_color + if (success) + update_dna() + update_icons_body() + return success + +/mob/living/carbon/human/proc/get_prioritised_markings() + var/list/markings = list() + var/list/priorities = list() + for(var/obj/item/organ/external/O in organs) + if(O.markings?.len) + for (var/marking in O.markings) + var/priority = num2text(O.markings[marking]["priority"]) + if (markings[priority]) + markings[priority] |= list("[marking]" = O.markings[marking]["color"]) //yes I know technically you could have a limb that was attached that has the same marking as another limb with a different color but I'm too tired + else + priorities |= O.markings[marking]["priority"] + markings[priority] = list("[marking]" = O.markings[marking]["color"]) + var/list/sorted = list() + while (priorities.len > 0) + var/priority = min(priorities) + priorities.Remove(priority) + priority = num2text(priority) + for (var/marking in markings[priority]) + if (!(marking in sorted)) + sorted[marking] = markings[priority][marking] + del(markings) + del(priorities) + markings_len = sorted.len + //todo - add an autofixing thing for having markings with the same priorities as another, and for having markings that should have the same priorities across bodyparts, but don't + //does not really need to happen, that kinda thing will only happen when putting another person's limb onto your own body + return sorted + + + + + + + + + diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index 056cb83e7b..cfc3bcd207 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -1137,7 +1137,7 @@ for(var/mob/living/L in T) if(L == src) //no eating yourself. 1984. continue - if(L.devourable) + if(L.devourable && L.can_be_drop_prey) targets += L if(!(targets.len)) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 8df2a4c789..225a6ef197 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1125,6 +1125,7 @@ if(!item) return FALSE //Grab processing has a chance of returning null +/* CHOMPEdit. If I want to do a nice little give I use the actual verb for it. if(a_intent == I_HELP && Adjacent(target) && isitem(item) && ishuman(target)) var/obj/item/I = item var/mob/living/carbon/human/H = target @@ -1135,6 +1136,7 @@ to_chat(src, SPAN_NOTICE("You offer \the [I] to \the [target].")) do_give(H) return TRUE +*/ drop_from_inventory(item) diff --git a/code/modules/mob/living/silicon/robot/emote.dm b/code/modules/mob/living/silicon/robot/emote.dm index 018c2b4336..79df20a324 100644 --- a/code/modules/mob/living/silicon/robot/emote.dm +++ b/code/modules/mob/living/silicon/robot/emote.dm @@ -33,4 +33,6 @@ var/list/_robot_default_emotes = list( ) /mob/living/silicon/robot/get_available_emotes() - return global._robot_default_emotes.Copy() + var/list/fulllist = global._robot_default_emotes.Copy() + fulllist |= _human_default_emotes + return fulllist \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm index 268f3f3c66..431ec71589 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm @@ -508,6 +508,8 @@ I think I covered everything. /// My thanks to Raeschen for these descriptions /mob/living/simple_mob/vore/bigdragon/init_vore() + if(!voremob_loaded) //CHOMPEdit + return var/obj/belly/B = new /obj/belly/dragon/maw(src) B.affects_vore_sprites = FALSE //CHOMPEdit - Added so that the new system handles these not affecting the sprite. B.emote_lists[DM_HOLD] = list( diff --git a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm index 507f9995f4..f459723e2f 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm @@ -437,6 +437,7 @@ ani_state = "fatfeline_s" extra_overlay_w = "fatfeline_markings" extra_overlay2_w = "fatfeline_markings_2" //CHOMPEdit + loaf_offset = 3 /datum/sprite_accessory/tail/taur/feline/synthfeline name = "SynthFeline dual-color (Taur)" @@ -556,7 +557,7 @@ extra_overlay = "drake_markings" ani_state = "fatdrake_s" extra_overlay_w = "fatdrake_markings" - can_loaf = FALSE + can_loaf = TRUE /datum/sprite_accessory/tail/taur/otie name = "Otie (Taur)" diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index ba3dd52597..a27d73e167 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -7,6 +7,7 @@ pressure_resistance = 2 drop_sound = 'sound/items/drop/paper.ogg' pickup_sound = 'sound/items/pickup/paper.ogg' + slot_flags = SLOT_BELT | SLOT_HOLSTER /obj/item/weapon/folder/blue desc = "A blue folder." @@ -69,8 +70,8 @@ to_chat(user, "You put the [W] into \the [src].") update_icon() else if(istype(W, /obj/item/weapon/pen)) - var/n_name = sanitizeSafe(tgui_input_text(usr, "What would you like to label the folder?", "Folder Labelling", null, MAX_NAME_LEN), MAX_NAME_LEN) - if((loc == usr && usr.stat == 0)) + var/n_name = sanitizeSafe(tgui_input_text(user, "What would you like to label the folder?", "Folder Labelling", null, MAX_NAME_LEN), MAX_NAME_LEN) + if(in_range(user, src) && user.stat == 0) name = "folder[(n_name ? text("- '[n_name]'") : null)]" return @@ -85,7 +86,7 @@ dat += "Remove Rename - [Pb.name]
" user << browse(dat, "window=folder") onclose(user, "folder") - add_fingerprint(usr) + add_fingerprint(user) return /obj/item/weapon/folder/Topic(href, href_list) diff --git a/code/modules/planet/virgo3b_vr.dm b/code/modules/planet/virgo3b_vr.dm index b3e6d136fb..ffeaf4f253 100644 --- a/code/modules/planet/virgo3b_vr.dm +++ b/code/modules/planet/virgo3b_vr.dm @@ -111,17 +111,19 @@ var/datum/planet/virgo3b/planet_virgo3b = null WEATHER_EMBERFALL = new /datum/weather/virgo3b/emberfall(), WEATHER_ASH_STORM = new /datum/weather/virgo3b/ash_storm(), WEATHER_ASH_STORM_SAFE = new /datum/weather/virgo3b/ash_storm_safe(), - WEATHER_FALLOUT = new /datum/weather/virgo3b/fallout() + WEATHER_FALLOUT = new /datum/weather/virgo3b/fallout(), + WEATHER_FALLOUT_TEMP = new /datum/weather/virgo3b/fallout/temp(), + WEATHER_CONFETTI = new /datum/weather/virgo3b/confetti() ) roundstart_weather_chances = list( - WEATHER_CLEAR = 30, - WEATHER_OVERCAST = 30, - WEATHER_LIGHT_SNOW = 20, - WEATHER_SNOW = 5, - WEATHER_BLIZZARD = 5, - WEATHER_RAIN = 5, - WEATHER_STORM = 2.5, - WEATHER_HAIL = 2.5 + WEATHER_CLEAR = 60, + WEATHER_OVERCAST = 60, + WEATHER_LIGHT_SNOW = 40, + WEATHER_SNOW = 10, + WEATHER_BLIZZARD = 10, + WEATHER_RAIN = 10, + WEATHER_STORM = 5, + WEATHER_HAIL = 5 ) /datum/weather/virgo3b @@ -550,3 +552,27 @@ var/datum/planet/virgo3b/planet_virgo3b = null if(T.is_outdoors()) SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high)) +/datum/weather/virgo3b/fallout/temp + name = "short-term fallout" + transition_chances = list( + WEATHER_FALLOUT = 10, + WEATHER_RAIN = 50, + WEATHER_STORM = 20, + WEATHER_OVERCAST = 5 + ) + +/datum/weather/virgo3b/confetti + name = "confetti" + icon = 'icons/effects/weather_vr.dmi' + icon_state = "confetti" + + transition_chances = list( + WEATHER_CLEAR = 50, + WEATHER_OVERCAST = 20, + WEATHER_CONFETTI = 5 + ) + observed_message = "Confetti is raining from the sky." + transition_messages = list( + "Suddenly, colorful confetti starts raining from the sky." + ) + diff --git a/code/modules/planet/virgo3c_vr.dm b/code/modules/planet/virgo3c_vr.dm index 9786602f1a..705fcba2b0 100644 --- a/code/modules/planet/virgo3c_vr.dm +++ b/code/modules/planet/virgo3c_vr.dm @@ -131,7 +131,9 @@ var/datum/planet/virgo3c/planet_virgo3c = null WEATHER_EMBERFALL = new /datum/weather/virgo3c/emberfall(), WEATHER_ASH_STORM = new /datum/weather/virgo3c/ash_storm(), WEATHER_ASH_STORM_SAFE = new /datum/weather/virgo3c/ash_storm_safe(), - WEATHER_FALLOUT = new /datum/weather/virgo3c/fallout() + WEATHER_FALLOUT = new /datum/weather/virgo3c/fallout(), + WEATHER_FALLOUT_TEMP = new /datum/weather/virgo3c/fallout/temp(), + WEATHER_CONFETTI = new /datum/weather/virgo3c/confetti() ) roundstart_weather_chances = list( WEATHER_CLEAR = 50, @@ -548,6 +550,30 @@ var/datum/planet/virgo3c/planet_virgo3c = null if(T.is_outdoors()) SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high)) +/datum/weather/virgo3c/fallout/temp + name = "short-term fallout" + transition_chances = list( + WEATHER_FALLOUT = 10, + WEATHER_RAIN = 50, + WEATHER_STORM = 20, + WEATHER_OVERCAST = 5 + ) + +/datum/weather/virgo3c/confetti + name = "confetti" + icon = 'icons/effects/weather_vr.dmi' + icon_state = "confetti" + + transition_chances = list( + WEATHER_CLEAR = 50, + WEATHER_OVERCAST = 20, + WEATHER_CONFETTI = 5 + ) + observed_message = "Confetti is raining from the sky." + transition_messages = list( + "Suddenly, colorful confetti starts raining from the sky." + ) + /turf/unsimulated/wall/planetary/virgo3c name = "impassable rock" desc = "It's quite impassable" diff --git a/code/modules/planet/virgo4_vr.dm b/code/modules/planet/virgo4_vr.dm index 9cb88591ad..46de03a2c7 100644 --- a/code/modules/planet/virgo4_vr.dm +++ b/code/modules/planet/virgo4_vr.dm @@ -110,7 +110,9 @@ var/datum/planet/virgo4/planet_virgo4 = null WEATHER_EMBERFALL = new /datum/weather/virgo4/emberfall(), WEATHER_ASH_STORM = new /datum/weather/virgo4/ash_storm(), WEATHER_ASH_STORM_SAFE = new /datum/weather/virgo4/ash_storm_safe(), - WEATHER_FALLOUT = new /datum/weather/virgo4/fallout() + WEATHER_FALLOUT = new /datum/weather/virgo4/fallout(), + WEATHER_FALLOUT_TEMP = new /datum/weather/virgo4/fallout/temp(), + WEATHER_CONFETTI = new /datum/weather/virgo4/confetti() ) roundstart_weather_chances = list( WEATHER_CLEAR = 50, @@ -524,6 +526,30 @@ var/datum/planet/virgo4/planet_virgo4 = null if(T.is_outdoors()) SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high)) +/datum/weather/virgo4/fallout/temp + name = "short-term fallout" + transition_chances = list( + WEATHER_FALLOUT = 10, + WEATHER_RAIN = 50, + WEATHER_STORM = 20, + WEATHER_OVERCAST = 5 + ) + +/datum/weather/virgo4/confetti + name = "confetti" + icon = 'icons/effects/weather_vr.dmi' + icon_state = "confetti" + + transition_chances = list( + WEATHER_CLEAR = 50, + WEATHER_OVERCAST = 20, + WEATHER_CONFETTI = 5 + ) + observed_message = "Confetti is raining from the sky." + transition_messages = list( + "Suddenly, colorful confetti starts raining from the sky." + ) + /turf/unsimulated/wall/planetary/normal/virgo4 name = "deep ocean" alpha = 0 diff --git a/code/modules/planet/weather_vr.dm b/code/modules/planet/weather_vr.dm index ebee725478..71b3cd8fe1 100644 --- a/code/modules/planet/weather_vr.dm +++ b/code/modules/planet/weather_vr.dm @@ -1,3 +1,6 @@ +/datum/weather_holder + var/firework_override = FALSE + /datum/weather_holder/update_icon_effects() ..() if(current_weather.icon) diff --git a/code/modules/reagents/hoses/connector.dm b/code/modules/reagents/hoses/connector.dm index be801b84af..abf55d4fab 100644 --- a/code/modules/reagents/hoses/connector.dm +++ b/code/modules/reagents/hoses/connector.dm @@ -134,5 +134,7 @@ carrier = loc /obj/item/hose_connector/output/active/process() - if(carrier) + if(carrier && my_hose) carrier.reagents.trans_to_holder(reagents, reagents.maximum_volume) + else if(reagents.total_volume && carrier && !my_hose) + reagents.trans_to_obj(carrier, reagents.maximum_volume) \ No newline at end of file diff --git a/code/modules/reagents/machinery/dispenser/reagent_tank.dm b/code/modules/reagents/machinery/dispenser/reagent_tank.dm index 7839c7e98e..5fd2a39607 100644 --- a/code/modules/reagents/machinery/dispenser/reagent_tank.dm +++ b/code/modules/reagents/machinery/dispenser/reagent_tank.dm @@ -8,6 +8,8 @@ anchored = FALSE pressure_resistance = 2*ONE_ATMOSPHERE + var/has_sockets = TRUE + var/obj/item/hose_connector/input/active/InputSocket var/obj/item/hose_connector/output/active/OutputSocket @@ -15,7 +17,7 @@ var/possible_transfer_amounts = list(10,25,50,100) /obj/structure/reagent_dispensers/attackby(obj/item/weapon/W as obj, mob/user as mob) - return + return /obj/structure/reagent_dispensers/Destroy() QDEL_NULL(InputSocket) @@ -30,10 +32,11 @@ if (!possible_transfer_amounts) src.verbs -= /obj/structure/reagent_dispensers/verb/set_APTFT - InputSocket = new(src) - InputSocket.carrier = src - OutputSocket = new(src) - OutputSocket.carrier = src + if(has_sockets) + InputSocket = new(src) + InputSocket.carrier = src + OutputSocket = new(src) + OutputSocket.carrier = src . = ..() @@ -201,6 +204,8 @@ playsound(src, W.usesound, 75, 1) if (modded) message_admins("[key_name_admin(user)] opened fueltank at [loc.loc.name] ([loc.x],[loc.y],[loc.z]), leaking fuel. (JMP)") + log_game("[key_name(user)] opened fueltank at [loc.loc.name] ([loc.x],[loc.y],[loc.z]), leaking fuel.") + leak_fuel(amount_per_transfer_from_this) if (istype(W,/obj/item/device/assembly_holder)) if (rig) to_chat(user, "There is another device in the way.") @@ -212,6 +217,7 @@ var/obj/item/device/assembly_holder/H = W if (istype(H.a_left,/obj/item/device/assembly/igniter) || istype(H.a_right,/obj/item/device/assembly/igniter)) message_admins("[key_name_admin(user)] rigged fueltank at [loc.loc.name] ([loc.x],[loc.y],[loc.z]) for explosion. (JMP)") + log_game("[key_name(user)] rigged fueltank at [loc.loc.name] ([loc.x],[loc.y],[loc.z]) for explosion.") rig = W user.drop_item() @@ -316,6 +322,7 @@ icon_state = "water_cooler" possible_transfer_amounts = null anchored = TRUE + has_sockets = FALSE var/bottle = 0 var/cups = 0 var/cupholder = 0 diff --git a/code/modules/reagents/reactions/instant/drinks_vr.dm b/code/modules/reagents/reactions/instant/drinks_vr.dm index 5948562cd6..5a88d79996 100644 --- a/code/modules/reagents/reactions/instant/drinks_vr.dm +++ b/code/modules/reagents/reactions/instant/drinks_vr.dm @@ -14,6 +14,13 @@ required_reagents = list("antifreeze" = 1, "gargleblaster" = 1, "syndicatebomb" =1) result_amount = 3 +/decl/chemical_reaction/instant/drinks/burnout + name = "Burnout" + id = "burnout" + result = "burnout" + required_reagents = list("antifreeze" = 1, "deathbell" = 1, "lovemaker" =1) + result_amount = 3 + /decl/chemical_reaction/instant/drinks/monstertamer name = "Monster Tamer" id = "monstertamer" diff --git a/code/modules/reagents/reactions/instant/instant_ch.dm b/code/modules/reagents/reactions/instant/instant_ch.dm index 586278daef..bcd8c10770 100644 --- a/code/modules/reagents/reactions/instant/instant_ch.dm +++ b/code/modules/reagents/reactions/instant/instant_ch.dm @@ -58,6 +58,12 @@ required_reagents = list("unsorbitol" = 1, "phoron" = 1) result_amount = 2 +/decl/chemical_reaction/instant/galactose + name = "Galactose" + id = "galactose" + result = "galactose" + required_reagents = list("milk" = 1, "sacid" = 1) + result_amount = 3 ///SAP RECIPES////// /decl/chemical_reaction/instant/myelamine_sap //This is the clotting agent used by clotting packs. diff --git a/code/modules/reagents/reagent_containers/borghypo.dm b/code/modules/reagents/reagent_containers/borghypo.dm index 544d6e8f42..1825d2d67e 100644 --- a/code/modules/reagents/reagent_containers/borghypo.dm +++ b/code/modules/reagents/reagent_containers/borghypo.dm @@ -136,13 +136,14 @@ volume = 60 possible_transfer_amounts = list(5, 10, 20, 30) reagent_ids = list("ale", - "cider", "beer", "berryjuice", "bitters", + "cider", "coffee", "cognac", "cola", + "cream", "dr_gibb", "egg", "gin", diff --git a/code/modules/reagents/reagents/food_drinks_vr.dm b/code/modules/reagents/reagents/food_drinks_vr.dm index 552fae5d79..a42719456e 100644 --- a/code/modules/reagents/reagents/food_drinks_vr.dm +++ b/code/modules/reagents/reagents/food_drinks_vr.dm @@ -53,6 +53,40 @@ if(dose * strength >= strength * 2.5) // Slurring takes longer. Again, intentional. M.slurring = max(M.slurring, 30) +/datum/reagent/ethanol/burnout + name = "Burnout" + id = "burnout" + description = "A bubbling orange alcoholic fluid that radiates a large amount of heat." + taste_description = "powerful alcoholic inferno" + color = "#cc5500" + taste_mult = 5 + strength = 10 + adj_temp = 10 + targ_temp = 380 + + glass_name = "Burnout" + glass_desc = "A swirling brew of fluids that leaves even the glass itself hot to the touch." + +/datum/reagent/ethanol/burnout/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + ..() + // Deathbell effects. + if(dose * strength >= strength) + M.make_dizzy(24) + if(dose * strength >= strength * 2.5) + M.slurring = max(M.slurring, 30) + // Simulating heat effects of spice. Without spice. + if(alien == IS_DIONA || alien == IS_ALRAUNE) + return + else if(ishuman(M)) + var/mob/living/carbon/human/H = M + if(!H.can_feel_pain()) + return + else + if((dose < 5) && (dose == metabolism || prob(5))) + to_chat(M, "Your insides feel uncomfortably hot!") + if(dose >= 5 && prob(5)) + M.visible_message("[M] [pick("dry heaves!","coughs!","splutters!")]", pick("You feel like your insides are burning!", "You feel like your insides are on fire!", "You feel like your belly is full of lava!")) + /datum/reagent/ethanol/monstertamer name = "Monster Tamer" id = "monstertamer" diff --git a/code/modules/reagents/reagents/medicine_ch.dm b/code/modules/reagents/reagents/medicine_ch.dm index 26daefc6fe..7bb2c5b750 100644 --- a/code/modules/reagents/reagents/medicine_ch.dm +++ b/code/modules/reagents/reagents/medicine_ch.dm @@ -194,3 +194,21 @@ chem_effective = 0.75 if(alien != IS_DIONA) M.heal_organ_damage(12 * removed * chem_effective, 0) + +/datum/reagent/nutriment/glucose/galactose + name = "Galactose" + id = "galactose" + description = "A clear sweet tasting fluid derived from lactose that is not as dense as glucose for IV application" + nutriment_factor = 5 //1/6 of glucose + taste_description = "sweetness" + color = "#ffffff" + overdose = 45 + +/datum/reagent/nutriment/glucose/galactose/overdose(var/mob/living/carbon/M, var/alien, var/removed) + ..() + M.eye_blurry = min(20, max(0, M.eye_blurry + 10)) + if(prob(10)) // 1 in 10 per tick + var/mob/living/carbon/human/H = M + var/obj/item/organ/internal/brain/br = H.internal_organs_by_name[O_BRAIN] //Give brain damage spaceman, AKA no change at all + br?.take_damage(1) + to_chat(M, "You feel extremely jittery!") diff --git a/code/modules/research/designs/circuits/circuits_vr.dm b/code/modules/research/designs/circuits/circuits_vr.dm index 56405580fe..2224d6e190 100644 --- a/code/modules/research/designs/circuits/circuits_vr.dm +++ b/code/modules/research/designs/circuits/circuits_vr.dm @@ -170,6 +170,13 @@ build_path = /obj/item/weapon/circuitboard/machine/vitals_monitor sort_string = "HAAF" +/datum/design/circuit/firework_launcher + name = "firework launcher" + id = "fireworklauncher" + req_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2) + build_path = /obj/item/weapon/circuitboard/firework_launcher + sort_string = "KBAAB" + /datum/design/circuit/pointdefense name = "point defense battery" id = "pointdefense" diff --git a/code/modules/research/designs/firework_stars.dm b/code/modules/research/designs/firework_stars.dm new file mode 100644 index 0000000000..6fb4e6f70f --- /dev/null +++ b/code/modules/research/designs/firework_stars.dm @@ -0,0 +1,112 @@ +// Firework Stars + +/datum/design/item/firework_star/AssembleDesignName() + name = "Firework star prototype ([item_name])" + +/datum/design/item/firework_star/aesthetic + name = "aesthetic" + desc = "A firework star, designed for use with launcher. Produces variable amount of joy." + id = "fireworkaesthetic" + req_tech = list(TECH_MATERIAL = 2) + materials = list(MAT_PLASTIC = 500, MAT_GLASS = 500) + build_path = /obj/item/weapon/firework_star/aesthetic + sort_string = "IFAAA" + +/datum/design/item/firework_star/aesthetic_config + name = "aesthetic - configurable" + desc = "A firework star, designed for use with launcher. Produces variable amount of joy. Can be modified to produce specific forms." + id = "fireworkaestheticconfig" + req_tech = list(TECH_MATERIAL = 3, TECH_ENGINEERING = 2) + materials = list(MAT_PLASTIC = 1000, MAT_GLASS = 1000) + build_path = /obj/item/weapon/firework_star/aesthetic/configurable + sort_string = "IFAAB" + +/datum/design/item/firework_star/weather_clear + name = "weather - CLEAR" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one clears the sky." + id = "fireworkclearsky" + req_tech = list(TECH_MATERIAL = 4, TECH_ENGINEERING = 3) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_STEEL = 4000) + build_path = /obj/item/weapon/firework_star/weather/clear + sort_string = "IFABA" + +/datum/design/item/firework_star/weather_overcast + name = "weather - CLOUDY" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates some clouds." + id = "fireworkcloudy" + req_tech = list(TECH_MATERIAL = 4, TECH_ENGINEERING = 3) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 1000) + build_path = /obj/item/weapon/firework_star/weather/overcast + sort_string = "IFABB" + +/datum/design/item/firework_star/weather_rain + name = "weather - RAIN" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates rain." + id = "fireworkrain" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 4) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 4000) + build_path = /obj/item/weapon/firework_star/weather/rain + sort_string = "IFABC" + +/datum/design/item/firework_star/weather_storm + name = "weather - STORM" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates a rainstorm." + id = "fireworkstorm" + req_tech = list(TECH_MATERIAL = 6, TECH_ENGINEERING = 5) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 3000, MAT_GOLD = 1000) + build_path = /obj/item/weapon/firework_star/weather/storm + sort_string = "IFABD" + +/datum/design/item/firework_star/weather_light_snow + name = "weather - LIGHT SNOW" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates a light snowfall." + id = "fireworklightsnow" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 4) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 2000, MAT_LEAD = 2000) + build_path = /obj/item/weapon/firework_star/weather/light_snow + sort_string = "IFABE" + +/datum/design/item/firework_star/weather_snow + name = "weather - MODERATE SNOW" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates a moderate snowfall." + id = "fireworksnow" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 4) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 3000, MAT_LEAD = 2000) + build_path = /obj/item/weapon/firework_star/weather/snow + sort_string = "IFABF" + +/datum/design/item/firework_star/weather_blizzard + name = "weather - HEAVY SNOW" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates a blizzard." + id = "fireworkblizzard" + req_tech = list(TECH_MATERIAL = 6, TECH_ENGINEERING = 5) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 3000, MAT_LEAD = 3000) + build_path = /obj/item/weapon/firework_star/weather/blizzard + sort_string = "IFABG" + +/datum/design/item/firework_star/weather_hail + name = "weather - HAIL" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates a hailstorm. DANGEROUS." + id = "fireworkhail" + req_tech = list(TECH_MATERIAL = 6, TECH_ENGINEERING = 5, TECH_ILLEGAL = 2) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_SILVER = 3000, MAT_LEAD = 3000, MAT_PLASTEEL = 4000) + build_path = /obj/item/weapon/firework_star/weather/hail + sort_string = "IFABH" + +/datum/design/item/firework_star/weather_fallout + name = "weather - NUCLEAR" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one creates a heavy cloud of nuclear fallout. DANGEROUS." + id = "fireworkfallout" + req_tech = list(TECH_MATERIAL = 8, TECH_ENGINEERING = 6, TECH_ILLEGAL = 7) + materials = list(MAT_PLASTIC = 2000, MAT_GLASS = 2000, MAT_URANIUM = 12000) + build_path = /obj/item/weapon/firework_star/weather/fallout + sort_string = "IFABI" + +/datum/design/item/firework_star/weather_confetti + name = "weather - CONFETTI" + desc = "A firework star, designed for use with launcher. Modifies current planetary weather effects. This one clears the sky and rains colorful confetti from it." + id = "fireworkconfetti" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 4) + materials = list(MAT_PLASTIC = 10000, MAT_GLASS = 10000) + build_path = /obj/item/weapon/firework_star/weather/confetti + sort_string = "IFABJ" diff --git a/code/modules/resleeving/autoresleever.dm b/code/modules/resleeving/autoresleever.dm index b902df6796..9d12b9bff3 100644 --- a/code/modules/resleeving/autoresleever.dm +++ b/code/modules/resleeving/autoresleever.dm @@ -165,7 +165,7 @@ for(var/lang in ghost_client.prefs.alternate_languages) var/datum/language/chosen_language = GLOB.all_languages[lang] if(chosen_language) - if(is_lang_whitelisted(src,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) + if(is_lang_whitelisted(ghost,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) new_character.add_language(lang) for(var/key in ghost_client.prefs.language_custom_keys) if(ghost_client.prefs.language_custom_keys[key]) diff --git a/code/modules/tgui/modules/appearance_changer.dm b/code/modules/tgui/modules/appearance_changer.dm index d6d7e5f386..a90d69689b 100644 --- a/code/modules/tgui/modules/appearance_changer.dm +++ b/code/modules/tgui/modules/appearance_changer.dm @@ -26,6 +26,7 @@ var/list/valid_earstyles = list() var/list/valid_tailstyles = list() var/list/valid_wingstyles = list() + var/list/markings = null /datum/tgui_module/appearance_changer/New( var/host, @@ -174,7 +175,7 @@ update_dna() changed_hook(APPEARANCECHANGER_CHANGED_EYES) return 1 - // VOREStation Add - Ears/Tails/Wings + // VOREStation Add - Ears/Tails/Wings/Markings if("ear") if(can_change(APPEARANCE_ALL_HAIR)) var/datum/sprite_accessory/ears/instance = locate(params["ref"]) @@ -277,6 +278,40 @@ owner.update_wing_showing() changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR) return 1 + if("marking") + if(can_change(APPEARANCE_ALL_HAIR)) + var/todo = params["todo"] + var/name_marking = params["name"] + switch (todo) + if (0) //delete + if (name_marking) + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.remove_marking(mark_datum)) + changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE) + return TRUE + if (1) //add + var/list/usable_markings = markings.Copy() ^ body_marking_styles_list.Copy() + var/new_marking = tgui_input_list(usr, "Choose a body marking:", "New Body Marking", usable_markings) + if(new_marking && can_still_topic(usr, state)) + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[new_marking] + if (target.add_marking(mark_datum)) + changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE) + return TRUE + if (2) //move up + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.change_priority_of_marking(mark_datum, FALSE)) + return TRUE + if (3) //move down + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.change_priority_of_marking(mark_datum, TRUE)) + return TRUE + if (4) //color + var/current = markings[name_marking] ? markings[name_marking] : "#000000" + var/marking_color = input(usr, "Please select marking color", "Marking color", current) as color|null + if(marking_color && can_still_topic(usr, state)) + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.change_marking_color(mark_datum, marking_color)) + return TRUE // VOREStation Add End return FALSE @@ -370,6 +405,11 @@ data["ear_style"] = target.ear_style data["tail_style"] = target.tail_style data["wing_style"] = target.wing_style + var/list/markings_data[0] + markings = target.get_prioritised_markings() + for (var/marking in markings) + markings_data[++markings_data.len] = list("marking_name" = marking, "marking_color" = markings[marking]) + data["markings"] = markings_data // VOREStation Add End data["change_facial_hair"] = can_change(APPEARANCE_FACIAL_HAIR) diff --git a/code/modules/vore/eating/belly_obj_ch.dm b/code/modules/vore/eating/belly_obj_ch.dm index b475d67d49..bb2f956ba3 100644 --- a/code/modules/vore/eating/belly_obj_ch.dm +++ b/code/modules/vore/eating/belly_obj_ch.dm @@ -97,8 +97,18 @@ var/tail_extra_overlay2 = FALSE //var/marking_to_add = NULL //var/marking_color = NULL + var/special_entrance_sound // Mob specific custom entry sound set by mob's init_vore when applicable + var/slow_digestion = FALSE // Gradual corpse digestion + var/slow_brutal = FALSE // Gradual corpse digestion: Stumpy's Special + var/sound_volume = 100 // Volume knob. + var/speedy_mob_processing = FALSE // Independent belly processing to utilize mob Life() instead of subsystem for 3x speed. +/obj/belly/Initialize() + . = ..() + if(speedy_mob_processing) //Breaking free from subsystem. Can be implemented in mob's Life() proc for example (as seen in swoopie.dm) + STOP_PROCESSING(SSbellies, src) + /obj/belly/proc/GetFullnessFromBelly() if(!affects_vore_sprites) return 0 diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index a0f977d789..d83f93c2e7 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -49,15 +49,12 @@ var/obj/item/weapon/storage/vore_egg/ownegg // Is this belly creating an egg? var/egg_type = "Egg" // Default egg type and path. var/egg_path = /obj/item/weapon/storage/vore_egg + var/egg_name = null // CHOMPAdd. Custom egg name var/list/list/emote_lists = list() // Idle emotes that happen on their own, depending on the bellymode. Contains lists of strings indexed by bellymode var/emote_time = 60 // How long between stomach emotes at prey (in seconds) var/emote_active = TRUE // Are we even giving emotes out at all or not? var/next_emote = 0 // When we're supposed to print our next emote, as a world.time var/selective_preference = DM_DIGEST // Which type of selective bellymode do we default to? - var/special_entrance_sound // CHOMPEdit: Mob specific custom entry sound set by mob's init_vore when applicable - var/slow_digestion = FALSE // CHOMPEdit: Gradual corpse digestion - var/slow_brutal = FALSE // CHOMPEdit: Gradual corpse digestion: Stumpy's Special - var/sound_volume = 100 // CHOMPEdit: Volume knob. // Generally just used by AI var/autotransferchance = 0 // % Chance of prey being autotransferred to transfer location @@ -278,7 +275,9 @@ "autotransfer_max_amount", "slow_digestion", "slow_brutal", - "sound_volume", //CHOMP end of variables from CHOMP + "sound_volume", + "speedy_mob_processing", + "egg_name", //CHOMP end of variables from CHOMP "egg_type", "save_digest_mode" ) @@ -843,7 +842,7 @@ var/obj/item/I = M.get_equipped_item(slot = slot) if(I) M.unEquip(I,force = TRUE) - if(contaminates || istype(I, /obj/item/weapon/card/id)) + if(contaminates) I.gurgle_contaminate(contents, contamination_flavor, contamination_color) //We do an initial contamination pass to get stuff like IDs wet. if(item_digest_mode == IM_HOLD) items_preserved |= I @@ -1271,6 +1270,7 @@ /obj/belly/proc/transfer_contents(atom/movable/content, obj/belly/target, silent = 0) if(!(content in src) || !istype(target)) return + content.belly_cycles = 0 //CHOMPEdit content.forceMove(target) if(ismob(content)) var/mob/ourmob = content @@ -1391,7 +1391,8 @@ dupe.autotransfer_max_amount = autotransfer_max_amount dupe.slow_digestion = slow_digestion dupe.slow_brutal = slow_brutal - dupe.sound_volume = sound_volume //CHOMP end of variables from CHOMP + dupe.sound_volume = sound_volume + dupe.egg_name = egg_name //CHOMP end of variables from CHOMP dupe.belly_fullscreen = belly_fullscreen dupe.disable_hud = disable_hud diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index b55843a96c..3078717d2e 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -218,6 +218,14 @@ GLOBAL_LIST_INIT(digest_modes, list()) var/list/egg_contents = list() for(var/E in touchable_atoms) if(istype(E, /obj/item/weapon/storage/vore_egg)) // Don't egg other eggs. + var/obj/item/weapon/storage/vore_egg/EG //CHOMPEdit Start + if(EG.egg_name != B.egg_name) + if(!B.egg_name) + EG.egg_name = null + EG.name = initial(EG.name) + else + EG.egg_name = B.egg_name + EG.name = B.egg_name continue if(isliving(E)) var/mob/living/L = E @@ -231,6 +239,9 @@ GLOBAL_LIST_INIT(digest_modes, list()) if(B.egg_type in tf_vore_egg_types) B.egg_path = tf_vore_egg_types[B.egg_type] B.ownegg = new B.egg_path(B) + if(B.ownegg && B.egg_name) + B.ownegg.egg_name = B.egg_name + B.ownegg.name = B.egg_name //CHOMPEdit End for(var/atom/movable/C in egg_contents) if(isitem(C) && egg_contents.len == 1) //Only egging one item var/obj/item/I = C diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index a841112d4e..5eb6b4ebfc 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -309,6 +309,8 @@ if(!E.vital) vitals_only = FALSE if(!LAZYLEN(E.children)) + for(var/obj/item/weapon/implant/I as anything in E.implants) + qdel(I) E.droplimb(TRUE, DROPLIMB_EDGE) qdel(E) break diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index 7f11b715cc..06c2f1d391 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -31,7 +31,7 @@ return */ feed_grabbed_to_self(src,T) - update_icon() + //update_icon() CHOMPEdit //CHOMPedit: On-demand belly loading. /mob/living/simple_mob/perform_the_nom(mob/living/user, mob/living/prey, mob/living/pred, obj/belly/belly, delay) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index f57f3114bd..5c9a66057e 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -181,6 +181,7 @@ // "messages" // TODO "can_taste" = selected.can_taste, "egg_type" = selected.egg_type, + "egg_name" = selected.egg_name, //CHOMPAdd "nutrition_percent" = selected.nutrition_percent, "digest_brute" = selected.digest_brute, "digest_burn" = selected.digest_burn, @@ -238,6 +239,7 @@ //CHOMPEdit END selected_list["egg_type"] = selected.egg_type + selected_list["egg_name"] = selected.egg_name //CHOMPAdd selected_list["contaminates"] = selected.contaminates selected_list["contaminate_flavor"] = null selected_list["contaminate_color"] = null @@ -1198,6 +1200,13 @@ return FALSE host.vore_selected.egg_type = new_egg_type . = TRUE + if("b_egg_name") //CHOMPAdd Start + var/new_egg_name = html_encode(tgui_input_text(usr,"Custom Egg Name (Leave empty for default egg name)","New Egg Name")) + if(length(new_egg_name) > BELLIES_NAME_MAX) + tgui_alert_async(usr, "Entered name too long (max [BELLIES_NAME_MAX]).","Error") + return FALSE + host.vore_selected.egg_name = new_egg_name + . = TRUE //CHOMPAdd End if("b_desc") var/new_desc = html_encode(tgui_input_text(usr,"Belly Description, '%pred' will be replaced with your name. '%prey' will be replaced with the prey's name. '%belly' will be replaced with your belly's name. ([BELLIES_DESC_MAX] char limit):","New Description",host.vore_selected.desc, multiline = TRUE, prevent_enter = TRUE)) diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index d57456b463..43802bcc86 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -2458,7 +2458,7 @@ Departamental Swimsuits, for general use //Pandora029:Seona Young /obj/item/clothing/under/fluff/foxoflightsuit - name = "padded flightsui" + name = "padded flightsuit" desc = "A ruddy-orange combination immersion-and-flight suit, fitted with extra padding across the front of its legs. Warm, waterproof and practical, seveal patches are scattered across it alongside a hard-wearing harness." icon = 'icons/vore/custom_clothes_vr.dmi' diff --git a/config/jukebox.json b/config/jukebox.json index 340cdc080d..402cf911f4 100644 --- a/config/jukebox.json +++ b/config/jukebox.json @@ -4686,5 +4686,55 @@ "secret": false, "lobby": false, "jukebox": true +}, +{ +"url": "https://files.catbox.moe/5pwnw3.m4a", +"title": "Eristocrats (Discordia Pt.II)", +"duration": 1690, +"artist": "That Handsome Devil", +"genre": "Rock", +"secret": false, +"lobby": false, +"jukebox": true +}, +{ +"url": "https://files.catbox.moe/2ozzmg.m4a", +"title": "Charlie's Inferno", +"duration": 2250, +"artist": "That Handsome Devil", +"genre": "Rock", +"secret": false, +"lobby": false, +"jukebox": true +}, +{ +"url": "https://files.catbox.moe/w8x8qb.m4a", +"title": "Monster Mash", +"duration": 1930, +"artist": "Bobby Pickett", +"genre": "Pop", +"secret": false, +"lobby": false, +"jukebox": true +}, +{ +"url": "https://files.catbox.moe/rjvm4j.mp3", +"title": "What's New Pussycat", +"duration": 1290, +"artist": "Tom Jones", +"genre": "Pop", +"secret": false, +"lobby": false, +"jukebox": true +}, +{ +"url": "https://files.catbox.moe/t19nip.m4a", +"title": "It's Not Unusual", +"duration": 1200, +"artist": "Tom Jones", +"genre": "Pop", +"secret": false, +"lobby": false, +"jukebox": true } ] diff --git a/icons/_nanomaps/southern_cross_nanomap_z2.png b/icons/_nanomaps/southern_cross_nanomap_z2.png index c1b2bcd38a..3e917bb5fc 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z2.png and b/icons/_nanomaps/southern_cross_nanomap_z2.png differ diff --git a/icons/_nanomaps/southern_cross_nanomap_z3.png b/icons/_nanomaps/southern_cross_nanomap_z3.png index 4a5959a25c..9506e9509d 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z3.png and b/icons/_nanomaps/southern_cross_nanomap_z3.png differ diff --git a/icons/_nanomaps/southern_cross_nanomap_z5.png b/icons/_nanomaps/southern_cross_nanomap_z5.png index 9b8337b081..4e797c4782 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z5.png and b/icons/_nanomaps/southern_cross_nanomap_z5.png differ diff --git a/icons/effects/weather_vr.dmi b/icons/effects/weather_vr.dmi index a72ff3b7b1..0d977a2f15 100644 Binary files a/icons/effects/weather_vr.dmi and b/icons/effects/weather_vr.dmi differ diff --git a/icons/mob/robots.dmi b/icons/mob/robots.dmi index 3157dea03a..25465b3891 100644 Binary files a/icons/mob/robots.dmi and b/icons/mob/robots.dmi differ diff --git a/icons/obj/christmas.dmi b/icons/obj/christmas.dmi index dfdc46c088..3c7addf9fe 100644 Binary files a/icons/obj/christmas.dmi and b/icons/obj/christmas.dmi differ diff --git a/icons/obj/drinks_vr.dmi b/icons/obj/drinks_vr.dmi index cbc94422b5..0565f00583 100644 Binary files a/icons/obj/drinks_vr.dmi and b/icons/obj/drinks_vr.dmi differ diff --git a/icons/obj/firework_stars.dmi b/icons/obj/firework_stars.dmi new file mode 100644 index 0000000000..e2d0cb1ee5 Binary files /dev/null and b/icons/obj/firework_stars.dmi differ diff --git a/icons/obj/machines/firework_launcher.dmi b/icons/obj/machines/firework_launcher.dmi new file mode 100644 index 0000000000..ab0910cad1 Binary files /dev/null and b/icons/obj/machines/firework_launcher.dmi differ diff --git a/icons/turf/flooring/fakesnow.dmi b/icons/turf/flooring/fakesnow.dmi new file mode 100644 index 0000000000..7a2ebdaeea Binary files /dev/null and b/icons/turf/flooring/fakesnow.dmi differ diff --git a/maps/cynosure/cynosure-2.dmm b/maps/cynosure/cynosure-2.dmm index 95bc2a15d1..f394aae906 100644 --- a/maps/cynosure/cynosure-2.dmm +++ b/maps/cynosure/cynosure-2.dmm @@ -58,9 +58,6 @@ }, /turf/simulated/floor/lino, /area/surface/station/security/detectives_office) -"acu" = ( -/turf/simulated/floor/water, -/area/surface/outside/plains/plateau) "acv" = ( /obj/structure/cable{ d1 = 4; @@ -879,6 +876,10 @@ dir = 4; pixel_x = 30 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "ayX" = ( @@ -889,10 +890,17 @@ /turf/simulated/floor/tiled/dark, /area/surface/station/hallway/secondary/groundfloor/civilian) "azs" = ( +<<<<<<< HEAD /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, +======= +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/fakesnow, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /area/surface/station/park) "aBf" = ( /obj/effect/floor_decal/spline/plain{ @@ -1731,6 +1739,10 @@ dir = 6 }, /obj/machinery/smartfridge/drying_rack, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/hydro, /area/surface/station/park) "aTC" = ( @@ -2025,6 +2037,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "aZv" = ( @@ -2888,12 +2904,11 @@ /turf/simulated/floor/tiled, /area/surface/station/park) "bqn" = ( -/obj/structure/flora/ausbushes/pointybush, /obj/machinery/camera/network/ground_floor{ c_tag = "Ground Floor - Park Southwest"; dir = 1 }, -/turf/simulated/floor/grass, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "bqP" = ( /obj/effect/floor_decal/industrial/hatch/yellow, @@ -2958,6 +2973,10 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/steel/sif/planetuse{ icon_state = "asteroidfloor"; initial_flooring = /decl/flooring/tiling/asteroidfloor @@ -3313,6 +3332,10 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/groundfloor/north) "bAb" = ( @@ -3391,6 +3414,13 @@ }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) +"bCq" = ( +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) "bCx" = ( /obj/effect/zone_divider, /turf/simulated/wall, @@ -3461,6 +3491,10 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "bDx" = ( @@ -3917,6 +3951,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "bOp" = ( @@ -5909,25 +5947,22 @@ /turf/simulated/floor/tiled/eris/cafe, /area/surface/station/crew_quarters/kitchen) "cQp" = ( -/obj/structure/showcase{ - desc = "A statue dedicated to the goodest boy"; - icon = 'icons/obj/statue.dmi'; - icon_state = "corgi2"; - name = "Dog Statue"; - pixel_y = 6 - }, /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain_full" }, +<<<<<<< HEAD /obj/item/weapon/bikehorn/rubberducky{ pixel_x = 6; pixel_y = -6 }, +======= +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /obj/machinery/camera/network/ground_floor{ c_tag = "Ground Floor - Park Center"; dir = 1; layer = 2.1 }, +/obj/structure/flora/tree/pine/xmas/presents, /turf/simulated/floor/tiled/techfloor, /area/surface/station/park) "cQr" = ( @@ -5978,7 +6013,7 @@ /turf/simulated/floor/plating, /area/surface/station/maintenance/storage/emergency/sec) "cQN" = ( -/turf/simulated/floor/water/deep, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/plains/plateau) "cRm" = ( /obj/machinery/light{ @@ -6607,6 +6642,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/groundfloor/north) "dcz" = ( @@ -8182,10 +8221,6 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/surface/station/rnd/misc_lab) -"dOI" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass, -/area/surface/station/park) "dOT" = ( /obj/structure/cable/green{ d1 = 1; @@ -8214,6 +8249,7 @@ /obj/machinery/door/airlock/glass{ name = "Engineering Foyer" }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/engineering/foyer) "dPv" = ( @@ -8288,10 +8324,6 @@ }, /turf/simulated/floor/tiled, /area/surface/station/engineering/atmos) -"dQn" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/ocean) "dQR" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8891,11 +8923,14 @@ /turf/simulated/floor/carpet, /area/surface/station/security/detectives_office) "eiv" = ( -/obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/camera/network/ground_floor{ c_tag = "Ground Floor - Park Northeast" }, -/turf/simulated/floor/grass, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "eiB" = ( /obj/structure/cable/green{ @@ -8945,6 +8980,11 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "ekq" = ( @@ -9209,6 +9249,9 @@ /obj/item/weapon/reagent_containers/food/condiment/small/peppershaker{ pixel_x = -4 }, +/obj/item/toy/xmastree{ + pixel_x = -8 + }, /turf/simulated/floor/tiled/eris/cafe, /area/surface/station/crew_quarters/cafeteria) "epp" = ( @@ -9771,6 +9814,10 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "eBp" = ( @@ -10804,6 +10851,17 @@ d2 = 8; icon_state = "2-8" }, +/obj/structure/showcase{ + desc = "A statue dedicated to the goodest boy. It has been moved to the side to make space for the tree."; + icon = 'icons/obj/statue.dmi'; + icon_state = "corgi2"; + name = "Dog Statue"; + pixel_y = 6 + }, +/obj/item/bikehorn/rubberducky{ + pixel_x = 6; + pixel_y = -6 + }, /turf/simulated/floor/tiled/monotile, /area/surface/station/park) "eVQ" = ( @@ -11271,6 +11329,10 @@ dir = 1 }, /obj/random/vendorfood, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "fgS" = ( @@ -11851,6 +11913,10 @@ /obj/machinery/seed_storage/garden{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/hydro, /area/surface/station/park) "fsU" = ( @@ -11992,6 +12058,7 @@ locked = 1; name = "External Access" }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/techfloor, /area/surface/station/hallway/primary/groundfloor/north) "fxr" = ( @@ -12597,6 +12664,7 @@ dir = 4; pixel_x = 24 }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled, /area/surface/station/security/briefing_room) "fKR" = ( @@ -13537,7 +13605,6 @@ /turf/simulated/floor/tiled, /area/surface/station/quartermaster/storage) "glD" = ( -/obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/camera/network/ground_floor{ c_tag = "Ground Floor - Park Northwest" }, @@ -13545,7 +13612,11 @@ dir = 1; pixel_y = 21 }, -/turf/simulated/floor/grass, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "glE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13844,6 +13915,9 @@ }, /obj/structure/table/marble, /obj/item/sticky_pad/random, +/obj/item/toy/xmastree{ + pixel_x = 8 + }, /turf/simulated/floor/tiled/eris/cafe, /area/surface/station/crew_quarters/cafeteria) "gsu" = ( @@ -13945,8 +14019,17 @@ /area/surface/station/rnd/research_lockerroom) "gvo" = ( /obj/structure/table/woodentable, +<<<<<<< HEAD /obj/item/weapon/dice/d20, /obj/item/weapon/deck/cards, +======= +/obj/item/dice/d20, +/obj/item/deck/cards, +/obj/structure/flora/pottedplant/xmas{ + pixel_x = 16; + pixel_y = 25 + }, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/carpet, /area/surface/station/library) "gvD" = ( @@ -14125,7 +14208,7 @@ /area/surface/station/hallway/primary/groundfloor/south) "gyu" = ( /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/ocean) "gzp" = ( /obj/machinery/door/firedoor/border_only, @@ -14533,12 +14616,14 @@ /turf/simulated/floor/tiled/eris/cafe, /area/surface/station/crew_quarters/kitchen) "gGO" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, /obj/machinery/light/spot{ dir = 1 }, -/turf/simulated/floor/grass, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "gGY" = ( /obj/machinery/portable_atmospherics/hydroponics, @@ -14653,6 +14738,10 @@ /obj/effect/floor_decal/corner/green/bordercorner{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "gIT" = ( @@ -14872,7 +14961,7 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "gNR" = ( /obj/structure/cable/green{ @@ -15139,6 +15228,10 @@ /obj/structure/sign/bigname/seg_7{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "gUf" = ( @@ -15754,11 +15847,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled/techfloor/grid, /area/surface/station/ai/upload_foyer) -"hlM" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/surface/station/park) "hlP" = ( /obj/structure/cable/green{ d1 = 1; @@ -15900,6 +15988,10 @@ pixel_x = 24; pixel_y = -12 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "hpH" = ( @@ -16367,7 +16459,7 @@ /area/surface/station/maintenance/north/gnd) "hCc" = ( /obj/effect/map_effect/portal/master/side_a/plains_to_wilderness/river, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "hCk" = ( /obj/effect/floor_decal/corner_steel_grid{ @@ -16803,10 +16895,6 @@ }, /turf/simulated/floor/tiled/white, /area/surface/station/rnd/hallway/stairwell) -"hMj" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/water, -/area/surface/outside/river/gautelfr) "hMo" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -17043,6 +17131,10 @@ /obj/structure/sign/bigname/seg_4{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "hSO" = ( @@ -17322,6 +17414,26 @@ }, /turf/simulated/floor/tiled/old_tile/gray, /area/surface/station/medical/surgery_storage) +<<<<<<< HEAD +======= +"ibT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/sign/level/ground{ + dir = 4; + pixel_x = -35 + }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "icz" = ( /obj/structure/table/reinforced, /obj/machinery/firealarm{ @@ -17341,6 +17453,13 @@ /obj/item/weapon/deskbell, /turf/simulated/floor/tiled, /area/surface/station/security/lobby) +"icD" = ( +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/fakesnow, +/area/surface/station/park) "icE" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/hologram/holopad, @@ -17472,6 +17591,10 @@ /obj/machinery/firealarm{ pixel_y = 24 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/groundfloor/north) "ieS" = ( @@ -17515,6 +17638,17 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 1 }, +<<<<<<< HEAD +======= +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/groundfloor/north) "ihg" = ( @@ -17677,6 +17811,10 @@ /obj/machinery/vending/hydronutrients{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/hydro, /area/surface/station/park) "imi" = ( @@ -18065,11 +18203,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/surface/station/ai/upload) -"ivC" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/surface/station/park) "ivI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -18290,10 +18423,6 @@ /obj/effect/catwalk_plated, /turf/simulated/floor/plating, /area/surface/station/arrivals/cynosure) -"iDl" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/surface/station/park) "iDu" = ( /obj/structure/closet, /obj/random/contraband, @@ -18435,6 +18564,10 @@ /obj/structure/sign/bigname/seg_3{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "iHY" = ( @@ -18452,7 +18585,7 @@ /area/surface/station/engineering/reactor_room) "iIo" = ( /obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/water/deep, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "iIs" = ( /obj/structure/table/woodentable, @@ -18745,11 +18878,20 @@ }, /turf/simulated/floor/plating/sif/planetuse, /area/surface/outside/station/solar/westsolar) +<<<<<<< HEAD "iOa" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, /area/surface/station/park) +======= +"iOD" = ( +/obj/structure/sign/level/ground/large{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "iPo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21171,6 +21313,10 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/groundfloor/north) "jUC" = ( @@ -21289,6 +21435,9 @@ initial_flooring = /decl/flooring/tiling/asteroidfloor }, /area/surface/outside/plains/station) +"jWt" = ( +/turf/simulated/floor/outdoors/shelfice, +/area/surface/outside/ocean) "jWB" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, @@ -22109,10 +22258,8 @@ /turf/simulated/floor/water, /area/surface/outside/plains/station) "klO" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, /obj/machinery/light/spot, -/turf/simulated/floor/grass, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "kmw" = ( /obj/structure/cable/green{ @@ -22490,6 +22637,10 @@ icon_state = "frame"; pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "kxd" = ( @@ -22674,6 +22825,10 @@ /obj/structure/sign/bigname{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "kBn" = ( @@ -22706,6 +22861,10 @@ dir = 8; pixel_x = 24 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "kCC" = ( @@ -22881,6 +23040,10 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "kFF" = ( @@ -23102,7 +23265,12 @@ /area/surface/station/medical/etc) "kKR" = ( /obj/structure/table/woodentable, +<<<<<<< HEAD /obj/item/weapon/deck/cards, +======= +/obj/item/deck/cards, +/obj/item/toy/xmas_cracker, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "kKX" = ( @@ -23954,7 +24122,7 @@ /obj/machinery/firealarm{ pixel_y = 24 }, -/obj/structure/flora/pottedplant/subterranean, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled, /area/surface/station/engineering/foyer) "lhB" = ( @@ -24967,6 +25135,14 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/hallway/primary/groundfloor/south) +"lFA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/cafeteria) "lFD" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -25104,6 +25280,17 @@ }, /turf/simulated/floor/tiled, /area/surface/station/security/lobby) +<<<<<<< HEAD +======= +"lIt" = ( +/obj/random/vendorfood, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "lIJ" = ( /obj/machinery/computer/aifixer{ dir = 8 @@ -26281,6 +26468,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "mhn" = ( @@ -27656,6 +27847,10 @@ /area/surface/station/maintenance/east/gnd) "mLm" = ( /obj/machinery/media/jukebox, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "mLF" = ( @@ -28318,6 +28513,20 @@ /obj/item/weapon/folder/red, /turf/simulated/floor/plating, /area/surface/station/security/briefing_room) +<<<<<<< HEAD +======= +"mWA" = ( +/turf/simulated/wall/r_concrete, +/area/surface/station/maintenance/kitchen) +"mWO" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "mXo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -28428,7 +28637,15 @@ /obj/effect/floor_decal/corner/blue/bordercorner2{ dir = 10 }, +<<<<<<< HEAD /obj/item/weapon/banner/nt, +======= +/obj/item/banner/nt, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "naO" = ( @@ -30067,12 +30284,6 @@ }, /turf/simulated/floor/tiled, /area/surface/station/quartermaster/storage) -"nPp" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/surface/station/park) "nPy" = ( /turf/unsimulated/mask, /area/surface/station/hallway/primary/groundfloor/west/elevator) @@ -30858,6 +31069,14 @@ }, /turf/simulated/floor/tiled/old_tile/blue, /area/surface/station/crew_quarters/gym) +"ogV" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/fakesnow, +/area/surface/station/park) "ogY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -31327,10 +31546,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central7, /turf/simulated/floor/tiled/white, /area/surface/station/security/detectives_office/lab) -"oqM" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/surface/station/park) "orb" = ( /obj/structure/cable/green{ d1 = 1; @@ -31388,6 +31603,18 @@ c_tag = "Ground Floor - South Hallway 3"; dir = 8 }, +<<<<<<< HEAD +======= +/obj/structure/sign/directions/bar{ + dir = 5; + pixel_y = 39 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/xmas, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "osf" = ( @@ -31512,6 +31739,7 @@ name = "Medbay"; req_access = list(5) }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/medical/reception) "otX" = ( @@ -32549,6 +32777,10 @@ c_tag = "Ground Floor - South Hallway 2"; dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/old_cargo/gray, /area/surface/station/hallway/primary/groundfloor/south) "oST" = ( @@ -32924,6 +33156,10 @@ /obj/structure/sign/bigname/seg_6{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "oYh" = ( @@ -33868,10 +34104,6 @@ }, /turf/simulated/floor/tiled, /area/surface/station/security/range) -"pql" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/grass, -/area/surface/station/park) "pqo" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -34091,7 +34323,6 @@ d2 = 4; icon_state = "1-4" }, -/obj/structure/flora/pottedplant/fern, /obj/effect/catwalk_plated, /obj/machinery/camera/network/security{ c_tag = "SEC - Lobby"; @@ -34100,6 +34331,7 @@ /obj/effect/landmark{ name = "lightsout" }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/plating, /area/surface/station/security/lobby) "puN" = ( @@ -34765,6 +34997,10 @@ /area/surface/station/quartermaster/lockerroom) "pKF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "pKH" = ( @@ -35346,6 +35582,7 @@ locked = 1; name = "External Access" }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/hallway/primary/groundfloor/south) "qaU" = ( @@ -35673,11 +35910,11 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/flora/pottedplant/stoutbush, /obj/structure/extinguisher_cabinet{ dir = 4; pixel_x = 30 }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/wood/sif, /area/surface/station/chapel/main) "qiC" = ( @@ -36492,11 +36729,6 @@ }, /turf/simulated/floor/carpet, /area/surface/station/library) -"qwT" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/surface/station/park) "qxt" = ( /obj/structure/cable/green{ d1 = 1; @@ -37099,6 +37331,10 @@ c_tag = "Ground Floor - Arrivals South"; dir = 5 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "qIX" = ( @@ -37123,6 +37359,10 @@ dir = 8; pixel_x = -24 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "qJC" = ( @@ -38185,6 +38425,7 @@ dir = 1 }, /obj/structure/table/marble, +/obj/item/toy/xmas_cracker, /turf/simulated/floor/tiled/eris/cafe, /area/surface/station/crew_quarters/cafeteria) "rjq" = ( @@ -38853,6 +39094,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "rze" = ( @@ -39474,6 +39719,7 @@ id = "bar2"; layer = 3.3 }, +/obj/item/toy/xmastree, /turf/simulated/floor/lino, /area/surface/station/crew_quarters/bar) "rNx" = ( @@ -39551,6 +39797,10 @@ name = "Reception Emergency Phone"; pixel_y = -6 }, +/obj/item/toy/xmastree{ + pixel_x = 10; + pixel_y = 5 + }, /turf/simulated/floor/tiled/neutral, /area/surface/station/medical/reception) "rON" = ( @@ -39996,6 +40246,10 @@ /obj/structure/sign/bigname/seg_5{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "scm" = ( @@ -40131,6 +40385,7 @@ /obj/item/weapon/material/kitchen/utensil/spoon{ pixel_x = 2 }, +/obj/item/toy/xmas_cracker, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "sgm" = ( @@ -40251,6 +40506,7 @@ /obj/machinery/door/airlock/glass{ name = "Cafeteria" }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/crew_quarters/cafeteria) "skI" = ( @@ -40873,6 +41129,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/arrivals/cynosure) "szU" = ( @@ -41907,9 +42167,8 @@ /turf/simulated/floor/tiled/neutral, /area/surface/station/rnd/exploration) "sYq" = ( -/obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "sZq" = ( /turf/simulated/wall, @@ -42131,11 +42390,6 @@ }, /turf/simulated/floor/plating, /area/surface/station/engineering/reactor_room) -"tga" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/surface/station/park) "tgg" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -42430,6 +42684,10 @@ pixel_x = 2; pixel_y = 2 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/hydro, /area/surface/station/park) "tmx" = ( @@ -42493,6 +42751,13 @@ }, /turf/simulated/floor/plating, /area/surface/station/maintenance/substation/engineering/gnd) +"tmP" = ( +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) "tmQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -42625,6 +42890,10 @@ dir = 1 }, /obj/machinery/vending/coffee, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "toW" = ( @@ -42727,9 +42996,7 @@ /turf/simulated/floor/tiled/steel_grid, /area/surface/station/medical/etc) "tss" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "tsM" = ( /obj/effect/floor_decal/borderfloorwhite{ @@ -42768,6 +43035,13 @@ }, /turf/simulated/floor/tiled/old_cargo/gray, /area/surface/station/ai/upload) +"tsW" = ( +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) "ttl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -42826,6 +43100,7 @@ locked = 1; name = "External Access" }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/techfloor, /area/surface/station/hallway/primary/groundfloor/north) "twb" = ( @@ -43162,6 +43437,7 @@ /area/surface/station/security/detectives_office) "tCe" = ( /obj/machinery/door/firedoor/glass, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/medical/reception) "tCj" = ( @@ -43691,6 +43967,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled/dark, /area/surface/station/crew_quarters/heads/hos) "tMQ" = ( @@ -43943,12 +44220,11 @@ /turf/simulated/floor/plating, /area/surface/station/security/processing) "tUr" = ( -/obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/camera/network/ground_floor{ c_tag = "Ground Floor - Park Southeast"; dir = 1 }, -/turf/simulated/floor/grass, +/turf/simulated/floor/fakesnow, /area/surface/station/park) "tUY" = ( /turf/simulated/wall/r_wall, @@ -45409,6 +45685,14 @@ /obj/machinery/status_display, /turf/simulated/floor/plating, /area/surface/station/rnd/xenobiology/xenoflora) +"uHN" = ( +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) "uIk" = ( /obj/machinery/door/airlock/maintenance/engi{ icon_state = "door_locked"; @@ -46170,6 +46454,10 @@ pixel_y = 21 }, /obj/random/vendordrink, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "vaT" = ( @@ -46565,6 +46853,10 @@ dir = 4; icon_state = "pipe-c" }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "vim" = ( @@ -48079,7 +48371,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/wood/sif, /area/surface/station/chapel/main) "vQT" = ( @@ -48098,7 +48390,7 @@ /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "vRD" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -48130,6 +48422,9 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/surface/station/engineering/reactor_waste) +"vSk" = ( +/turf/simulated/floor/outdoors/shelfice, +/area/surface/outside/river/gautelfr) "vSp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -48510,6 +48805,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "wcF" = ( @@ -49026,6 +49325,10 @@ /obj/structure/sign/bigname/seg_2{ pixel_y = 32 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/outdoors/snow/sif/planetuse, /area/surface/outside/plains/station) "wqH" = ( @@ -49235,6 +49538,10 @@ /obj/effect/floor_decal/corner/blue/bordercorner2{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/primary/groundfloor/south) "wxQ" = ( @@ -49390,7 +49697,7 @@ dir = 1; pixel_y = -22 }, -/obj/structure/flora/pottedplant/orientaltree, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled/white, /area/surface/station/medical/reception) "wCc" = ( @@ -49401,6 +49708,7 @@ req_access = list(63); req_one_access = list() }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/security/lobby) "wCF" = ( @@ -49504,6 +49812,13 @@ }, /turf/simulated/floor/tiled/white, /area/surface/station/rnd/hallway/gnd) +"wFo" = ( +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) "wFE" = ( /obj/structure/table/bench/wooden, /obj/structure/disposalpipe/segment{ @@ -50436,7 +50751,7 @@ /area/surface/station/medical/chemistry) "wVF" = ( /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "wVK" = ( /obj/machinery/atmospherics/valve/digital{ @@ -50941,6 +51256,7 @@ locked = 1; name = "External Access" }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/hallway/primary/groundfloor/south) "xjm" = ( @@ -50993,6 +51309,13 @@ has_fish = 0 }, /area/surface/outside/station/reactorpond) +"xky" = ( +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) "xlW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -51772,8 +52095,17 @@ }, /obj/item/roller, /obj/item/bodybag/cryobag, +<<<<<<< HEAD /obj/item/weapon/storage/firstaid/regular, /obj/item/weapon/storage/pill_bottle/spaceacillin, +======= +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/wood, /area/surface/station/crew_quarters/cafeteria) "xGi" = ( @@ -52521,6 +52853,13 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/station/rnd/exploration) +"xUE" = ( +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/fakesnow, +/area/surface/station/park) "xUY" = ( /turf/simulated/wall, /area/surface/station/rnd/exploration) @@ -52689,6 +53028,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/surface/station/ai/cyborg_station) +"xWV" = ( +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) "xXe" = ( /obj/structure/fence{ dir = 4 @@ -53218,6 +53565,10 @@ /obj/effect/floor_decal/industrial/outline{ color = "#D4D4D4" }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/old_cargo/gray, /area/surface/station/hallway/primary/groundfloor/south) "yjH" = ( @@ -53941,17 +54292,17 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (3,1,1) = {" @@ -54198,17 +54549,17 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (4,1,1) = {" @@ -54455,17 +54806,17 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (5,1,1) = {" @@ -54712,17 +55063,17 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (6,1,1) = {" @@ -54969,17 +55320,17 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (7,1,1) = {" @@ -55226,17 +55577,17 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (8,1,1) = {" @@ -55482,18 +55833,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (9,1,1) = {" @@ -55739,18 +56090,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (10,1,1) = {" @@ -55995,19 +56346,19 @@ vwy vwy iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (11,1,1) = {" @@ -56252,19 +56603,19 @@ vwy vwy iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (12,1,1) = {" @@ -56510,18 +56861,18 @@ vwy vwy iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (13,1,1) = {" @@ -56767,18 +57118,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (14,1,1) = {" @@ -57024,18 +57375,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (15,1,1) = {" @@ -57281,18 +57632,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt +jWt wYa "} (16,1,1) = {" @@ -57538,18 +57889,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt wYa "} (17,1,1) = {" @@ -57795,18 +58146,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt wYa "} (18,1,1) = {" @@ -58052,18 +58403,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt wYa "} (19,1,1) = {" @@ -58309,18 +58660,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt wYa "} (20,1,1) = {" @@ -58566,18 +58917,18 @@ vwy vwy iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (21,1,1) = {" @@ -58823,18 +59174,18 @@ vwy vwy iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (22,1,1) = {" @@ -59080,18 +59431,18 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (23,1,1) = {" @@ -59337,18 +59688,18 @@ vwy iGM iGM iGM +jWt dXk dXk dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (24,1,1) = {" @@ -59594,18 +59945,18 @@ vwy iGM iGM iGM +jWt +jWt dXk dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (25,1,1) = {" @@ -59850,19 +60201,19 @@ vwy vwy iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (26,1,1) = {" @@ -60024,11 +60375,11 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -60107,19 +60458,19 @@ vwy iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (27,1,1) = {" @@ -60278,16 +60629,16 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -60364,19 +60715,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (28,1,1) = {" @@ -60533,20 +60884,20 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -60621,19 +60972,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (29,1,1) = {" @@ -60786,28 +61137,28 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -60878,19 +61229,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (30,1,1) = {" @@ -61031,41 +61382,41 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -61135,19 +61486,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (31,1,1) = {" @@ -61284,48 +61635,48 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -61392,19 +61743,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (32,1,1) = {" @@ -61539,52 +61890,52 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -61648,20 +61999,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (33,1,1) = {" @@ -61792,13 +62143,23 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum @@ -61806,44 +62167,34 @@ oum oum oum oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -61905,20 +62256,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (34,1,1) = {" @@ -62047,64 +62398,64 @@ vwy vwy vwy vwy +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk aNW aNW aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62162,20 +62513,20 @@ iGM iGM iGM iGM +jWt dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (35,1,1) = {" @@ -62303,33 +62654,33 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62338,32 +62689,32 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62421,18 +62772,18 @@ iGM iGM dXk dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (36,1,1) = {" @@ -62558,22 +62909,22 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62598,30 +62949,30 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62678,18 +63029,18 @@ iGM iGM dXk dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (37,1,1) = {" @@ -62813,17 +63164,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62858,28 +63209,28 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -62934,19 +63285,19 @@ iGM iGM iGM dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (38,1,1) = {" @@ -63068,17 +63419,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -63119,26 +63470,26 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy xdu vwy @@ -63190,20 +63541,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (39,1,1) = {" @@ -63323,18 +63674,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -63378,25 +63729,25 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk wVF vwy vwy @@ -63448,19 +63799,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt wYa "} (40,1,1) = {" @@ -63578,19 +63929,19 @@ vwy vwy vwy vwy +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -63638,25 +63989,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk wVF -aNW -aNW +vSk +vSk vwy vwy vwy @@ -63705,19 +64056,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt wYa "} (41,1,1) = {" @@ -63832,90 +64183,90 @@ vwy vwy vwy vwy +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk aNW aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -vwy -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum +vSk wVF -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -63962,19 +64313,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (42,1,1) = {" @@ -64088,17 +64439,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy kgZ @@ -64156,25 +64507,25 @@ vwy vwy vwy vwy -aNW +vSk vwy -aNW -aNW -aNW -aNW -aNW -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum cKh oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -64219,19 +64570,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (43,1,1) = {" @@ -64343,18 +64694,18 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -64417,24 +64768,24 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum cKh oum oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -64476,19 +64827,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (44,1,1) = {" @@ -64598,18 +64949,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -64675,25 +65026,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -aNW -oum -cKh -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +wVF +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -64733,19 +65084,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (45,1,1) = {" @@ -64854,17 +65205,17 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -64934,24 +65285,24 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk wVF -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -64991,18 +65342,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (46,1,1) = {" @@ -65110,17 +65461,17 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -65193,24 +65544,24 @@ vwy vwy vwy vwy -aNW -aNW -aNW +vSk +vSk +vSk wVF -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -65248,18 +65599,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (47,1,1) = {" @@ -65365,17 +65716,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -aNW -aNW +vSk +vSk vwy vwy vwy @@ -65454,22 +65805,22 @@ vwy vwy vwy wVF -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -65505,18 +65856,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (48,1,1) = {" @@ -65621,17 +65972,17 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum oum oum -oum -oum -oum -aNW -aNW +vSk +vSk vwy vwy vwy @@ -65712,22 +66063,22 @@ vwy vwy xdu vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -65762,18 +66113,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (49,1,1) = {" @@ -65876,18 +66227,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum aNW -aNW -aNW +vSk +vSk vwy vwy vwy @@ -65971,21 +66322,21 @@ xdu vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66019,18 +66370,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (50,1,1) = {" @@ -66132,18 +66483,18 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66231,19 +66582,19 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66276,18 +66627,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (51,1,1) = {" @@ -66388,18 +66739,18 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66489,20 +66840,20 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66533,18 +66884,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (52,1,1) = {" @@ -66641,21 +66992,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66748,20 +67099,20 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -66789,19 +67140,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (53,1,1) = {" @@ -66896,21 +67247,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67006,21 +67357,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67046,19 +67397,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (54,1,1) = {" @@ -67150,23 +67501,23 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67265,21 +67616,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67303,19 +67654,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (55,1,1) = {" @@ -67405,24 +67756,24 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67524,21 +67875,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum aNW aNW aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67559,20 +67910,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (56,1,1) = {" @@ -67660,24 +68011,24 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -67782,21 +68133,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum aNW aNW aNW -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -67816,20 +68167,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (57,1,1) = {" @@ -67914,25 +68265,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -68040,22 +68391,22 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum aNW aNW aNW -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -68073,20 +68424,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (58,1,1) = {" @@ -68169,25 +68520,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -68299,21 +68650,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -68330,20 +68681,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (59,1,1) = {" @@ -68425,25 +68776,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -68557,21 +68908,21 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -68586,21 +68937,21 @@ iGM iGM iGM iGM -aNW -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -dXk -qzz -qzz -qzz -qzz +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (60,1,1) = {" @@ -68680,25 +69031,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -68816,6 +69167,7 @@ vwy vwy vwy vwy +<<<<<<< HEAD aNW aNW aNW @@ -68831,6 +69183,23 @@ aNW aNW aNW aNW +======= +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 vwy vwy vwy @@ -68843,6 +69212,7 @@ iGM iGM iGM iGM +<<<<<<< HEAD aNW dXk qzz @@ -68858,6 +69228,23 @@ qzz qzz qzz qzz +======= +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 wYa "} (61,1,1) = {" @@ -68892,9 +69279,15 @@ vwy vwy vwy vwy +<<<<<<< HEAD vwy vwy vwy +======= +fyc +fyc +fyc +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 vwy vwy vwy @@ -68936,25 +69329,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -69075,46 +69468,46 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy -aNW +vSk iGM iGM -aNW -aNW -oum -qzz -qzz -qzz -qzz -dXk -qzz -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (62,1,1) = {" @@ -69191,25 +69584,25 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -69333,45 +69726,45 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -qzz -qzz -qzz -qzz -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (63,1,1) = {" @@ -69447,24 +69840,24 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -69592,43 +69985,43 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -qzz -qzz -qzz -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (64,1,1) = {" @@ -69703,24 +70096,24 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -69849,43 +70242,43 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -qzz -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (65,1,1) = {" @@ -69962,14 +70355,14 @@ wVF wVF wVF wVF -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF wVF wVF wVF @@ -70113,21 +70506,21 @@ wVF wVF wVF wVF -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh -cKh +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF +wVF wVF gyu gyu @@ -70137,12 +70530,12 @@ gyu gyu gyu gyu -dQn -dQn -dQn -dQn -dQn -dQn +gyu +gyu +gyu +gyu +gyu +gyu wYa "} (66,1,1) = {" @@ -70214,23 +70607,23 @@ vwy vwy vwy vwy -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -70366,40 +70759,40 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (67,1,1) = {" @@ -70470,22 +70863,22 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -70624,39 +71017,39 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (68,1,1) = {" @@ -70726,22 +71119,22 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -70883,37 +71276,37 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM -aNW -aNW +vSk +vSk iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (69,1,1) = {" @@ -70982,21 +71375,21 @@ xdu vwy vwy vwy -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -71141,17 +71534,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM iGM @@ -71159,18 +71552,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (70,1,1) = {" @@ -71238,21 +71631,21 @@ vwy xdu vwy vwy -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum oum -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -71399,35 +71792,35 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (71,1,1) = {" @@ -71494,20 +71887,20 @@ vwy vwy xdu vwy -aNW -aNW -aNW -aNW -oum -oum -oum +vSk +vSk +vSk +vSk +vSk +vSk +vSk oum oum oum aNW -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -71657,34 +72050,34 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (72,1,1) = {" @@ -71750,20 +72143,20 @@ vwy vwy vwy xdu -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -71915,33 +72308,33 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (73,1,1) = {" @@ -72007,18 +72400,18 @@ vwy vwy vwy xdu -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -72173,32 +72566,32 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -aNW -aNW -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (74,1,1) = {" @@ -72264,17 +72657,17 @@ vwy vwy vwy wVF -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -72432,30 +72825,30 @@ nCe nCe nCe nCe -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum -oum -oum -aNW +vSk +vSk +vSk iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (75,1,1) = {" @@ -72521,16 +72914,16 @@ vwy vwy vwy wVF -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -72690,29 +73083,29 @@ nCe nCe nCe nCe -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk aNW oum oum -oum -aNW -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (76,1,1) = {" @@ -72776,18 +73169,18 @@ vwy vwy vwy vwy -aNW +vSk wVF -oum -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -72949,27 +73342,27 @@ nCe nCe nCe nCe -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk oum -oum -oum -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (77,1,1) = {" @@ -73033,17 +73426,17 @@ vwy vwy vwy vwy -aNW -cKh -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +wVF +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -73207,26 +73600,26 @@ nCe nCe nCe nCe -aNW -aNW -aNW -aNW -oum -oum -qzz -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +vSk +vSk +vSk +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (78,1,1) = {" @@ -73289,17 +73682,17 @@ vwy vwy vwy vwy -aNW -aNW -cKh -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +wVF +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -73465,25 +73858,25 @@ nCe nCe nCe nCe -aNW -aNW -aNW -aNW -oum -qzz -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +vSk +vSk +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (79,1,1) = {" @@ -73546,16 +73939,16 @@ vwy vwy vwy vwy -aNW -oum -cKh -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +wVF +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -73723,24 +74116,24 @@ nCe nCe nCe nCe -aNW -aNW -aNW -oum -qzz -qzz -qzz -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +vSk +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (80,1,1) = {" @@ -73802,16 +74195,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -cKh -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +wVF +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -73981,23 +74374,23 @@ xpd xnL nCe nCe -aNW -aNW -aNW -dXk -dXk -qzz -qzz -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +vSk +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (81,1,1) = {" @@ -74059,15 +74452,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -cKh -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +wVF +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -74239,22 +74632,22 @@ nCe nCe nCe pNa -aNW -aNW -dXk -dXk -dXk -qzz -qzz -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +vSk +vSk +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (82,1,1) = {" @@ -74316,14 +74709,14 @@ vwy vwy vwy vwy -aNW -aNW -oum -cKh -oum -oum -aNW -aNW +vSk +vSk +vSk +wVF +vSk +vSk +vSk +vSk vwy vwy vwy @@ -74498,20 +74891,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -qzz -qzz -dXk -dXk +jWt +jWt +jWt dXk dXk qzz qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (83,1,1) = {" @@ -74572,15 +74965,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -cKh -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +wVF +vSk +vSk +vSk +vSk vwy vwy vwy @@ -74756,19 +75149,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -qzz -qzz -dXk -dXk +jWt +jWt +jWt +jWt dXk qzz qzz qzz +jWt +jWt +jWt +jWt +jWt wYa "} (84,1,1) = {" @@ -74828,14 +75221,14 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -cKh -aNW -aNW +vSk +vSk +vSk +vSk +vSk +wVF +vSk +vSk vwy vwy vwy @@ -75014,18 +75407,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (85,1,1) = {" @@ -75085,13 +75478,13 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum +vSk +vSk +vSk +vSk +vSk wVF -aNW +vSk vwy vwy vwy @@ -75271,18 +75664,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (86,1,1) = {" @@ -75341,12 +75734,12 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk wVF vwy vwy @@ -75528,18 +75921,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (87,1,1) = {" @@ -75598,12 +75991,12 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk wVF vwy vwy @@ -75785,18 +76178,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (88,1,1) = {" @@ -75853,14 +76246,14 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk xdu vwy vwy @@ -76042,18 +76435,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (89,1,1) = {" @@ -76110,13 +76503,13 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy xdu vwy @@ -76298,19 +76691,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (90,1,1) = {" @@ -76366,13 +76759,13 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy xdu @@ -76555,19 +76948,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (91,1,1) = {" @@ -76623,13 +77016,13 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy xdu @@ -76812,19 +77205,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (92,1,1) = {" @@ -76879,13 +77272,13 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -77070,18 +77463,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (93,1,1) = {" @@ -77136,13 +77529,13 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -77327,18 +77720,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (94,1,1) = {" @@ -77393,12 +77786,12 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -77584,18 +77977,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (95,1,1) = {" @@ -77649,13 +78042,13 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -77841,18 +78234,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (96,1,1) = {" @@ -77906,13 +78299,13 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -78097,19 +78490,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (97,1,1) = {" @@ -78162,13 +78555,13 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -78354,19 +78747,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (98,1,1) = {" @@ -78418,14 +78811,14 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -78571,7 +78964,7 @@ stJ stJ vCy vCy -aqn +xky aqn nCe nCe @@ -78611,19 +79004,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (99,1,1) = {" @@ -78674,15 +79067,15 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -78828,7 +79221,7 @@ oYn cen ieS hfw -aqn +xky aqn nCe nCe @@ -78869,18 +79262,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (100,1,1) = {" @@ -78931,14 +79324,14 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -79085,7 +79478,7 @@ jod tZJ eAI hfw -aqn +xky aqn aqn nCe @@ -79126,18 +79519,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (101,1,1) = {" @@ -79187,15 +79580,15 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -79342,7 +79735,7 @@ qrz wXK tZJ mJK -aqn +xky aqn aqn aqn @@ -79383,18 +79776,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (102,1,1) = {" @@ -79443,16 +79836,16 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -79599,7 +79992,7 @@ tTd tZJ jOe kxI -aqn +xky aqn aqn aqn @@ -79640,18 +80033,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt +jWt wYa "} (103,1,1) = {" @@ -79700,16 +80093,16 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -79856,7 +80249,7 @@ nKl wXK tZJ mJK -aqn +xky aqn aqn aqn @@ -79896,19 +80289,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk +jWt +jWt +jWt +jWt +jWt +jWt dXk dXk qzz qzz -qzz -qzz -qzz +jWt +jWt +jWt wYa "} (104,1,1) = {" @@ -79957,15 +80350,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -80113,7 +80506,7 @@ uOl tZJ eqC hfw -aqn +xky aqn aqn aqn @@ -80153,19 +80546,19 @@ pNa pNa pNa pNa +jWt +jWt +jWt +jWt +jWt dXk dXk dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt wYa "} (105,1,1) = {" @@ -80213,16 +80606,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -80370,7 +80763,7 @@ oye tZJ eSQ hfw -aqn +xky aqn aqn aqn @@ -80410,19 +80803,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (106,1,1) = {" @@ -80470,16 +80863,16 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -80666,20 +81059,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (107,1,1) = {" @@ -80727,15 +81120,15 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -80923,20 +81316,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (108,1,1) = {" @@ -80983,15 +81376,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -81180,20 +81573,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (109,1,1) = {" @@ -81240,15 +81633,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -81437,20 +81830,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (110,1,1) = {" @@ -81497,14 +81890,14 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -81694,20 +82087,20 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt +jWt wYa "} (111,1,1) = {" @@ -81754,14 +82147,14 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -81951,20 +82344,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt +jWt wYa "} (112,1,1) = {" @@ -82011,14 +82404,14 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -82208,20 +82601,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz qzz +jWt +jWt wYa "} (113,1,1) = {" @@ -82267,15 +82660,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -82427,7 +82820,7 @@ mjW vSp qsw jkH -aqn +xky aqn qkr pNy @@ -82465,20 +82858,20 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (114,1,1) = {" @@ -82524,14 +82917,14 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -82684,7 +83077,7 @@ mjW lYk iJn oEj -aqn +xky aqn pNy qkr @@ -82722,20 +83115,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (115,1,1) = {" @@ -82781,14 +83174,14 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk oum oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -82941,7 +83334,7 @@ mjW mjW fgw jkH -aqn +xky aqn qkr pNy @@ -82979,20 +83372,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (116,1,1) = {" @@ -83037,14 +83430,14 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk oum oum -oum -oum -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -83198,7 +83591,7 @@ mjW ayF ufL ufL -aqn +xky aqn pNy qkr @@ -83237,19 +83630,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (117,1,1) = {" @@ -83294,14 +83687,14 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk oum oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -83494,19 +83887,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (118,1,1) = {" @@ -83552,11 +83945,11 @@ vwy eSI vRh vRh +vRh vux vux -vux -vux -vux +vRh +vRh vRh eSI vwy @@ -83661,12 +84054,21 @@ lUL jmQ lUL lUL +<<<<<<< HEAD oqM sYq oqM sYq pts bql +======= +xUE +ogV +xUE +ogV +ibT +tsW +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 wAe rIC tDF @@ -83678,10 +84080,10 @@ tmp imh fsP aTA -sYq -oqM -sYq -oqM +ogV +xUE +ogV +xUE pfh pfh wlg @@ -83708,9 +84110,9 @@ fJg oPb omw bsn -aqn -aqn -aqn +wFo +wFo +wFo aqn aqn pPG @@ -83751,19 +84153,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (119,1,1) = {" @@ -83917,7 +84319,7 @@ mRw lUL lUL lUL -pql +tss rVf rVf rVf @@ -84008,19 +84410,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (120,1,1) = {" @@ -84265,19 +84667,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (121,1,1) = {" @@ -84323,11 +84725,11 @@ vwy eSI gNL gNL +gNL xkh xkh -xkh -xkh -xkh +gNL +gNL gNL eSI vwy @@ -84434,27 +84836,27 @@ hlM pts bql bql -oqM +tss wMG nLV eYp -oqM -oqM -dOI +tss +tss +tss bql vxx bql -dOI -iDl -oqM +tss +tss +tss wMG iUi eYp -oqM +tss bql bql oVr -hlM +tss tRC icM kee @@ -84522,19 +84924,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (122,1,1) = {" @@ -84578,14 +84980,14 @@ vwy vwy vwy vwy -aNW +vSk +vSk +vSk oum oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -84690,25 +85092,25 @@ jgp gGO pts bql -oqM -oqM +tss +tss ydK vue rzu -oqM -oqM -tga +tss +tss +tss bql eCu bql -tga -oqM -oqM +tss +tss +tss ydK vue rzu -oqM -oqM +tss +tss bql hNc klO @@ -84737,7 +85139,7 @@ kDt ogu ogu ogu -aqn +xky aqn nCe nCe @@ -84780,18 +85182,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (123,1,1) = {" @@ -84834,15 +85236,15 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -84944,28 +85346,28 @@ oKA nZk vmK eNB -hlM +icD pts bql -tga -oqM -qwT -qwT -qwT -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql eCu bql -tga -oqM -oqM -qwT -ivC -ivC -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql hNc azs @@ -84994,7 +85396,7 @@ mSO cOE aHr ogu -aqn +xky aqn nCe nCe @@ -85037,18 +85439,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (124,1,1) = {" @@ -85091,14 +85493,14 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -85204,25 +85606,25 @@ pfh glD pts bql -tga -oqM -oqM -oqM -oqM -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql eCu bql -tga -oqM -oqM -oqM -oqM -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql hNc bqn @@ -85251,7 +85653,7 @@ rNb nXP jOt kDt -aqn +xky aqn nCe nCe @@ -85294,18 +85696,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (125,1,1) = {" @@ -85348,14 +85750,14 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -85458,28 +85860,28 @@ lGu rHb vmK pfh -oqM +icD pts bql tss -oqM -oqM -oqM -oqM -oqM -oqM -oqM +tss +tss +tss +tss +tss +tss +tss bql lxE bql -oqM -oqM -oqM -oqM -oqM -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql okY rVf @@ -85508,7 +85910,7 @@ qUk twn kcu dGI -aqn +xky aqn nCe nCe @@ -85551,18 +85953,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (126,1,1) = {" @@ -85604,15 +86006,15 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -85715,28 +86117,28 @@ lGu fCf vmK eNB -hlM +icD pts bql -oqM -oqM -qwT -qwT -nPp -oqM -oqM +tss +tss +tss +tss +tss +tss +tss bql niD eVB xjU bql -oqM -oqM -qwT -qwT -qwT -oqM -iDl +tss +tss +tss +tss +tss +tss +tss bql bql nzB @@ -85765,7 +86167,7 @@ kDP bUO jOt kDt -aqn +xky nCe nCe nCe @@ -85808,18 +86210,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (127,1,1) = {" @@ -85861,14 +86263,14 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -85972,7 +86374,7 @@ bzH fCf vmK jgp -hlM +icD pts bql bql @@ -86022,7 +86424,7 @@ uge hbn snA ogu -aqn +xky nCe nCe nCe @@ -86065,18 +86467,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (128,1,1) = {" @@ -86117,15 +86519,15 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -86229,28 +86631,28 @@ dbY fCf vmK eNB -hlM +icD pts bql -oqM -oqM -qwT -qwT -qwT -oqM -oqM +tss +tss +tss +tss +tss +tss +tss bql raN oRf ssV bql -oqM -oqM -qwT -qwT -qwT -oqM -iOa +tss +tss +tss +tss +tss +tss +tss bql bql nzB @@ -86261,14 +86663,14 @@ aMy aMy oWm xHN -heM +xWV wPL len gFr ueg owl heM -shK +lFA xys mfj oDQ @@ -86279,7 +86681,7 @@ aDE qrZ ewh ogu -aqn +xky nCe nCe nCe @@ -86321,19 +86723,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (129,1,1) = {" @@ -86374,15 +86776,15 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -86486,28 +86888,28 @@ dbY rHb eWW pfh -oqM +icD pts bql -tga -oqM -oqM -oqM -oqM -oqM -oqM -oqM +tss +tss +tss +tss +tss +tss +tss +tss bql lxE bql -oqM -oqM -oqM -oqM -oqM -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql aGP tnc @@ -86536,7 +86938,7 @@ nIh nIh ogu ogu -aqn +xky nCe nCe nCe @@ -86578,19 +86980,19 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (130,1,1) = {" @@ -86631,15 +87033,15 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -86746,25 +87148,25 @@ pfh eiv pts bql -tga -oqM -oqM -oqM -oqM -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql eCu bql -tga -oqM -oqM -oqM -iOa -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql hNc tUr @@ -86780,7 +87182,7 @@ heM hpC kCz xFu -heM +tmP eYt nyc aYV @@ -86835,19 +87237,19 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (131,1,1) = {" @@ -86887,15 +87289,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -87000,33 +87402,33 @@ jTX dRM vmK eNB -hlM +icD pts bql -tga -oqM -qwT -qwT -qwT -oqM -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql eCu bql -tga -oqM -oqM -qwT -qwT -qwT -oqM -tga +tss +tss +tss +tss +tss +tss +tss +tss bql hNc -hlM +tss xAq -heM +bCq heM heM ktB @@ -87092,19 +87494,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (132,1,1) = {" @@ -87144,15 +87546,15 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -87260,25 +87662,25 @@ jgp gGO pts bql -oqM -oqM +tss +tss ydK vue rzu -oqM -oqM -tga +tss +tss +tss bql eCu bql -tga -oqM -oqM +tss +tss +tss ydK vue rzu -oqM -oqM +tss +tss bql hNc klO @@ -87349,19 +87751,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (133,1,1) = {" @@ -87400,16 +87802,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -aNW -aNW -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -87514,31 +87916,31 @@ qrK uoO dPB eNB -hlM +icD pCv bql bql -oqM +tss osk gNX pOh -oqM -oqM -dOI +tss +tss +tss bql vxx bql -dOI -oqM -oqM +tss +tss +tss osk wRu pOh -oqM +tss bql bql hNc -hlM +tss xAq pKF fFD @@ -87606,19 +88008,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (134,1,1) = {" @@ -87657,16 +88059,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -aNW -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -87795,9 +88197,9 @@ bql bql kPY hNc -oqM +tss cLb -heM +bCq gNl gNl heM @@ -87862,20 +88264,20 @@ nCe pNa pNa pNa +jWt +jWt +jWt +jWt dXk dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (135,1,1) = {" @@ -87914,16 +88316,16 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk vwy vwy vwy @@ -88051,10 +88453,10 @@ rLA oaG oaG oaG -oqM +tss rif rif -heM +bCq heM heM nZD @@ -88119,20 +88521,20 @@ nCe pNa pNa pNa +jWt +jWt +jWt dXk dXk dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (136,1,1) = {" @@ -88171,16 +88573,16 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk vwy vwy vwy @@ -88287,13 +88689,13 @@ kgP jmY dNE pfh -oqM +tss sYq -oqM +tss sYq -oqM +tss sYq -oqM +tss sYq imM kWT @@ -88305,9 +88707,9 @@ wAe bql hNc sYq -oqM +tss sYq -oqM +tss rif rif giV @@ -88376,20 +88778,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (137,1,1) = {" @@ -88428,16 +88830,16 @@ vwy vwy vwy vwy -aNW +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -88633,20 +89035,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (138,1,1) = {" @@ -88685,16 +89087,16 @@ vwy vwy vwy vwy -aNW +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -88890,20 +89292,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (139,1,1) = {" @@ -88942,17 +89344,17 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -89148,19 +89550,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (140,1,1) = {" @@ -89199,17 +89601,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -89337,11 +89739,11 @@ xJB pPS usl nyc -heM +uHN tJW -heM +tmP eBl -heM +tmP mLm iWL gda @@ -89405,19 +89807,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (141,1,1) = {" @@ -89456,16 +89858,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -89662,19 +90064,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (142,1,1) = {" @@ -89713,16 +90115,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -89919,19 +90321,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (143,1,1) = {" @@ -89969,17 +90371,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -90176,19 +90578,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (144,1,1) = {" @@ -90226,17 +90628,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -90434,18 +90836,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (145,1,1) = {" @@ -90483,17 +90885,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -90691,18 +91093,18 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (146,1,1) = {" @@ -90740,16 +91142,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -90947,19 +91349,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (147,1,1) = {" @@ -90996,17 +91398,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -91204,19 +91606,19 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (148,1,1) = {" @@ -91253,17 +91655,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -91460,20 +91862,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (149,1,1) = {" @@ -91509,18 +91911,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -91717,20 +92119,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt +jWt wYa "} (150,1,1) = {" @@ -91766,17 +92168,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -91974,20 +92376,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt wYa "} (151,1,1) = {" @@ -92023,17 +92425,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -92231,20 +92633,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz qzz +jWt wYa "} (152,1,1) = {" @@ -92280,17 +92682,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -92488,20 +92890,20 @@ nCe pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (153,1,1) = {" @@ -92536,18 +92938,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -92745,20 +93147,20 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (154,1,1) = {" @@ -92793,18 +93195,18 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -93002,20 +93404,20 @@ pNa pNa pNa pNa -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (155,1,1) = {" @@ -93050,18 +93452,18 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -93260,19 +93662,19 @@ pNa pNa pNa iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (156,1,1) = {" @@ -93307,18 +93709,18 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -93517,19 +93919,19 @@ pNa pNa pNa iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (157,1,1) = {" @@ -93564,18 +93966,18 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -93774,19 +94176,19 @@ pNa pNa pNa iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (158,1,1) = {" @@ -93820,19 +94222,19 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -94031,19 +94433,19 @@ pNa pNa pNa iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (159,1,1) = {" @@ -94077,19 +94479,19 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -94288,19 +94690,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (160,1,1) = {" @@ -94334,17 +94736,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -94545,19 +94947,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (161,1,1) = {" @@ -94591,17 +94993,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -94802,19 +95204,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (162,1,1) = {" @@ -94848,17 +95250,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -95059,19 +95461,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (163,1,1) = {" @@ -95105,16 +95507,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -95316,19 +95718,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (164,1,1) = {" @@ -95362,16 +95764,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -95574,18 +95976,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (165,1,1) = {" @@ -95618,17 +96020,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -95831,18 +96233,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (166,1,1) = {" @@ -95875,17 +96277,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -96088,18 +96490,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (167,1,1) = {" @@ -96131,18 +96533,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -96345,18 +96747,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (168,1,1) = {" @@ -96388,17 +96790,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -96602,18 +97004,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (169,1,1) = {" @@ -96644,18 +97046,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -96859,18 +97261,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (170,1,1) = {" @@ -96901,17 +97303,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -97116,18 +97518,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (171,1,1) = {" @@ -97158,17 +97560,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -97372,19 +97774,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (172,1,1) = {" @@ -97415,16 +97817,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -97629,19 +98031,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (173,1,1) = {" @@ -97671,17 +98073,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -97886,19 +98288,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (174,1,1) = {" @@ -97928,17 +98330,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -98143,19 +98545,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (175,1,1) = {" @@ -98184,17 +98586,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -98400,19 +98802,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (176,1,1) = {" @@ -98441,17 +98843,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -98657,19 +99059,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (177,1,1) = {" @@ -98697,18 +99099,18 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -98913,20 +99315,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (178,1,1) = {" @@ -98953,18 +99355,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -99170,20 +99572,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (179,1,1) = {" @@ -99210,18 +99612,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -99427,20 +99829,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (180,1,1) = {" @@ -99466,19 +99868,19 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -99684,20 +100086,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (181,1,1) = {" @@ -99723,18 +100125,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -99941,20 +100343,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (182,1,1) = {" @@ -99980,18 +100382,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -100197,21 +100599,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (183,1,1) = {" @@ -100236,18 +100638,18 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -100454,21 +100856,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (184,1,1) = {" @@ -100494,17 +100896,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -100711,21 +101113,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (185,1,1) = {" @@ -100751,17 +101153,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -100968,21 +101370,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (186,1,1) = {" @@ -101007,17 +101409,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -101225,21 +101627,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (187,1,1) = {" @@ -101264,16 +101666,16 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -101482,21 +101884,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (188,1,1) = {" @@ -101520,17 +101922,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -101739,21 +102141,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (189,1,1) = {" @@ -101777,16 +102179,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -101996,21 +102398,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (190,1,1) = {" @@ -102033,17 +102435,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -102252,22 +102654,22 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (191,1,1) = {" @@ -102290,16 +102692,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -102509,22 +102911,22 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (192,1,1) = {" @@ -102547,16 +102949,16 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -102766,22 +103168,22 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (193,1,1) = {" @@ -102803,17 +103205,17 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -103023,22 +103425,22 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (194,1,1) = {" @@ -103062,11 +103464,11 @@ xdu wVF wVF wVF -cKh -cKh -cKh -cKh -cKh +wVF +wVF +wVF +wVF +wVF wVF wVF wVF @@ -103291,11 +103693,11 @@ gyu gyu gyu gyu -dQn -dQn -dQn -dQn -dQn +gyu +gyu +gyu +gyu +gyu wYa "} (195,1,1) = {" @@ -103316,16 +103718,16 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -103538,21 +103940,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (196,1,1) = {" @@ -103572,17 +103974,17 @@ vwy vwy vwy vwy -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk oum oum oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -103795,21 +104197,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (197,1,1) = {" @@ -103829,17 +104231,17 @@ vwy vwy vwy vwy -aNW -aNW +vSk +vSk +vSk +vSk oum oum oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -104052,21 +104454,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt +jWt +jWt wYa "} (198,1,1) = {" @@ -104085,16 +104487,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -104309,21 +104711,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt +jWt +jWt wYa "} (199,1,1) = {" @@ -104342,16 +104744,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -104565,22 +104967,22 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt +jWt wYa "} (200,1,1) = {" @@ -104599,16 +105001,16 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -104822,22 +105224,22 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz qzz +jWt wYa "} (201,1,1) = {" @@ -104855,16 +105257,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -105080,21 +105482,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt wYa "} (202,1,1) = {" @@ -105111,16 +105513,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -105337,21 +105739,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt wYa "} (203,1,1) = {" @@ -105368,16 +105770,16 @@ vwy vwy vwy vwy -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -105594,21 +105996,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt qzz +jWt wYa "} (204,1,1) = {" @@ -105624,16 +106026,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -105851,21 +106253,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (205,1,1) = {" @@ -105880,16 +106282,16 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -106108,21 +106510,21 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (206,1,1) = {" @@ -106136,15 +106538,15 @@ vwy vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -106366,20 +106768,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (207,1,1) = {" @@ -106392,16 +106794,16 @@ bVN vwy vwy vwy -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -106623,20 +107025,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (208,1,1) = {" @@ -106648,16 +107050,16 @@ qpk bVN vwy vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -106880,20 +107282,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (209,1,1) = {" @@ -106904,17 +107306,17 @@ qpk qpk bVN vwy -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -107137,20 +107539,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (210,1,1) = {" @@ -107160,17 +107562,17 @@ qpk qpk qpk bVN -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -107394,20 +107796,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk +jWt +jWt +jWt +jWt +jWt +jWt dXk qzz qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt wYa "} (211,1,1) = {" @@ -107417,16 +107819,16 @@ qpk qpk aHG vZt -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -107651,20 +108053,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk +jWt +jWt +jWt +jWt dXk dXk dXk qzz qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt wYa "} (212,1,1) = {" @@ -107673,16 +108075,16 @@ cos cos cos vZt -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -107908,37 +108310,37 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk +jWt +jWt +jWt +jWt +jWt dXk dXk qzz qzz qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt wYa "} (213,1,1) = {" -acu +cQN hCc +vSk aNW -aNW -aNW -aNW -oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -108166,35 +108568,35 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (214,1,1) = {" -acu -hMj -aNW +cQN +iIo +vSk aNW bMK -oum -oum -oum -oum -oum -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -108423,33 +108825,33 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (215,1,1) = {" -acu -hMj -aNW +cQN +iIo +vSk +vSk +vSk +vSk oum -oum -oum -oum -oum -oum -aNW -aNW +vSk +vSk +vSk +vSk vwy vwy vwy @@ -108679,33 +109081,33 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (216,1,1) = {" cQN iIo -oum -oum -oum -oum +vSk +vSk +vSk +vSk gDr -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -108936,32 +109338,32 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (217,1,1) = {" cQN iIo -oum -oum -aNW -aNW -aNW -aNW -aNW +vSk +vSk +vSk +vSk +vSk +vSk +vSk vwy vwy vwy @@ -109193,20 +109595,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (218,1,1) = {" @@ -109214,9 +109616,9 @@ cQN iIo aNW eQE -aNW -aNW -aNW +vSk +vSk +vSk vwy vwy vwy @@ -109450,29 +109852,29 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (219,1,1) = {" -acu -hMj -aNW -aNW -aNW -aNW +cQN +iIo +vSk +vSk +vSk +vSk nOe vwy vwy @@ -109707,27 +110109,27 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (220,1,1) = {" -acu -hMj -aNW -aNW +cQN +iIo +vSk +vSk nOe nOe nOe @@ -109964,20 +110366,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (221,1,1) = {" @@ -110221,20 +110623,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (222,1,1) = {" @@ -110478,20 +110880,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (223,1,1) = {" @@ -110735,20 +111137,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (224,1,1) = {" @@ -110992,20 +111394,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (225,1,1) = {" @@ -111249,20 +111651,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (226,1,1) = {" @@ -111506,20 +111908,20 @@ iGM iGM iGM iGM +jWt +jWt +jWt +jWt +jWt +jWt dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (227,1,1) = {" @@ -111764,19 +112166,19 @@ iGM iGM iGM iGM +jWt +jWt +jWt +jWt dXk dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (228,1,1) = {" @@ -112021,19 +112423,19 @@ iGM iGM iGM iGM +jWt +jWt +jWt +jWt dXk dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (229,1,1) = {" @@ -112278,19 +112680,19 @@ iGM iGM iGM iGM +jWt +jWt +jWt +jWt dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (230,1,1) = {" @@ -112535,19 +112937,19 @@ iGM iGM iGM iGM +jWt +jWt +jWt +jWt dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (231,1,1) = {" @@ -112791,20 +113193,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (232,1,1) = {" @@ -113048,20 +113450,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (233,1,1) = {" @@ -113305,20 +113707,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (234,1,1) = {" @@ -113562,20 +113964,20 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (235,1,1) = {" @@ -113820,19 +114222,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (236,1,1) = {" @@ -114077,19 +114479,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (237,1,1) = {" @@ -114334,19 +114736,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (238,1,1) = {" @@ -114591,19 +114993,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (239,1,1) = {" @@ -114848,19 +115250,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (240,1,1) = {" @@ -115105,19 +115507,19 @@ iGM iGM iGM iGM +jWt +jWt +jWt dXk dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (241,1,1) = {" @@ -115366,15 +115768,15 @@ dXk dXk dXk dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (242,1,1) = {" @@ -115619,19 +116021,19 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (243,1,1) = {" @@ -115877,18 +116279,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (244,1,1) = {" @@ -116134,18 +116536,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (245,1,1) = {" @@ -116391,18 +116793,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (246,1,1) = {" @@ -116648,18 +117050,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (247,1,1) = {" @@ -116905,18 +117307,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (248,1,1) = {" @@ -117162,18 +117564,18 @@ iGM iGM iGM iGM -dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (249,1,1) = {" @@ -117420,17 +117822,17 @@ iGM iGM iGM dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (250,1,1) = {" @@ -117677,17 +118079,17 @@ iGM iGM iGM dXk -dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (251,1,1) = {" @@ -117935,16 +118337,16 @@ iGM iGM dXk dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (252,1,1) = {" @@ -118192,16 +118594,16 @@ iGM iGM dXk dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (253,1,1) = {" @@ -118449,16 +118851,16 @@ iGM iGM dXk dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (254,1,1) = {" @@ -118706,16 +119108,16 @@ iGM iGM iGM dXk -dXk -dXk -dXk -qzz -qzz -qzz -qzz -qzz -qzz -qzz +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt +jWt wYa "} (255,1,1) = {" diff --git a/maps/cynosure/cynosure-3.dmm b/maps/cynosure/cynosure-3.dmm index d4942804fa..23e9e7b29e 100644 --- a/maps/cynosure/cynosure-3.dmm +++ b/maps/cynosure/cynosure-3.dmm @@ -13,6 +13,10 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_wing) "abG" = ( @@ -111,6 +115,14 @@ /obj/effect/catwalk_plated, /turf/simulated/floor/plating, /area/surface/station/hallway/primary/secondfloor/west) +"agf" = ( +/obj/structure/table/bench/padded, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) "agj" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/grey, @@ -345,6 +357,7 @@ name = "Cargo"; req_one_access = list(50) }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/quartermaster/office) "amK" = ( @@ -680,12 +693,12 @@ dir = 1 }, /obj/effect/floor_decal/borderfloor, -/obj/structure/table/bench/padded, /obj/effect/floor_decal/corner/white/border, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/dormhallway) "auR" = ( @@ -1254,12 +1267,12 @@ /turf/simulated/floor/tiled/steel_grid, /area/surface/station/medical/patient_wing) "aSg" = ( -/obj/structure/flora/pottedplant/tropical, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /obj/machinery/status_display/supply_display{ pixel_y = -32 }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled, /area/surface/station/quartermaster/qm) "aSo" = ( @@ -2319,11 +2332,16 @@ /obj/effect/floor_decal/corner/blue/border{ dir = 5 }, +<<<<<<< HEAD /obj/structure/flora/pottedplant/drooping, /obj/item/device/radio/intercom{ +======= +/obj/item/radio/intercom{ +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 dir = 4; pixel_x = 21 }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled/white, /area/surface/station/crew_quarters/heads/cmo) "bDD" = ( @@ -3505,6 +3523,10 @@ /obj/effect/floor_decal/corner/green/bordercorner{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "cmP" = ( @@ -3839,6 +3861,7 @@ /area/surface/station/ai) "cyU" = ( /obj/structure/table/wooden_reinforced, +/obj/item/toy/xmastree, /turf/simulated/floor/wood, /area/surface/station/command/meeting_room) "czC" = ( @@ -4113,6 +4136,10 @@ c_tag = "MED - Patient Room B"; dir = 5 }, +/obj/item/toy/xmastree{ + pixel_x = -5; + pixel_y = 9 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_b) "cLp" = ( @@ -5057,6 +5084,13 @@ }, /turf/simulated/floor/tiled, /area/surface/station/engineering/locker_room) +"dmY" = ( +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) "doE" = ( /turf/simulated/wall/r_wall, /area/surface/station/quartermaster/foyer) @@ -5998,6 +6032,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "dWg" = ( @@ -6308,6 +6346,17 @@ dir = 8; pixel_y = 32 }, +<<<<<<< HEAD +======= +/obj/structure/sign/levels/security{ + dir = 5; + pixel_y = 26 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/civilian) "ehU" = ( @@ -7200,6 +7249,10 @@ dir = 1; pixel_y = 30 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/civilian) "ePK" = ( @@ -7758,6 +7811,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "ffk" = ( @@ -8616,6 +8673,10 @@ c_tag = "Second Floor -East Hallway 2"; dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "fKa" = ( @@ -9501,6 +9562,10 @@ dir = 4; pixel_x = -32 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "gmZ" = ( @@ -11763,6 +11828,10 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_wing) "hDC" = ( @@ -13005,6 +13074,7 @@ /obj/machinery/light{ dir = 4 }, +/obj/item/toy/xmastree, /turf/simulated/floor/carpet, /area/surface/station/crew_quarters/sleep/Dorm_1) "itI" = ( @@ -13657,6 +13727,7 @@ "iKn" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/quartermaster/office) "iKZ" = ( @@ -13830,6 +13901,10 @@ dir = 4; pixel_x = 24 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/secondary/secondfloor/command) "iPq" = ( @@ -13962,6 +14037,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "iRT" = ( @@ -13983,6 +14062,10 @@ c_tag = "MED - Patient Room A"; dir = 5 }, +/obj/item/toy/xmastree{ + pixel_x = -5; + pixel_y = 9 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_a) "iRU" = ( @@ -14028,6 +14111,10 @@ dir = 8; pixel_x = -21 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "iSV" = ( @@ -14480,8 +14567,25 @@ name = "Research Division Access"; req_one_access = list(47) }, +/obj/structure/sign/christmas/wreath, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/rnd/research_foyer) +"jeC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) "jeO" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -14596,6 +14700,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_wing) "jhW" = ( @@ -14743,6 +14851,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "jmb" = ( @@ -15324,6 +15436,10 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_wing) "jAh" = ( @@ -16687,6 +16803,10 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_wing) "kuD" = ( @@ -18767,6 +18887,13 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central7, /turf/simulated/floor/tiled/freezer, /area/surface/station/engineering/engi_restroom) +"mgT" = ( +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) "mhc" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -18972,6 +19099,19 @@ }, /turf/simulated/floor/tiled/white, /area/surface/station/rnd/research) +"mpF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) "mqi" = ( /obj/machinery/computer/centrifuge, /obj/effect/floor_decal/borderfloorwhite{ @@ -20385,6 +20525,7 @@ /obj/machinery/light{ dir = 4 }, +/obj/item/toy/xmastree, /turf/simulated/floor/carpet, /area/surface/station/crew_quarters/sleep/Dorm_5) "nmz" = ( @@ -20848,6 +20989,10 @@ "nzR" = ( /obj/structure/table/standard, /obj/item/tabloid, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/secondary/secondfloor/command) "nAp" = ( @@ -21987,6 +22132,10 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central7{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/civilian) "oup" = ( @@ -22811,6 +22960,10 @@ pixel_x = -24; pixel_y = 12 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "oVf" = ( @@ -23089,6 +23242,7 @@ /obj/effect/floor_decal/corner/purple/border{ dir = 5 }, +/obj/structure/flora/pottedplant/xmas, /turf/simulated/floor/tiled/white, /area/surface/station/rnd/research_foyer) "pgm" = ( @@ -23230,6 +23384,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/item/toy/xmastree, /turf/simulated/floor/carpet, /area/surface/station/crew_quarters/sleep/Dorm_2) "pkd" = ( @@ -23898,6 +24053,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/item/toy/xmastree, /turf/simulated/floor/carpet, /area/surface/station/crew_quarters/sleep/Dorm_4) "pIq" = ( @@ -24051,10 +24207,16 @@ pixel_x = -32; pixel_y = -6 }, +<<<<<<< HEAD /obj/structure/sign/directions/stairs_down{ dir = 4; pixel_x = -32; pixel_y = -12 +======= +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 }, /turf/simulated/floor/plating, /area/surface/station/hallway/primary/secondfloor/east) @@ -24586,6 +24748,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/civilian) "qbt" = ( @@ -25433,6 +25599,10 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/civilian) "qGp" = ( @@ -26303,6 +26473,10 @@ /obj/machinery/alarm{ pixel_y = 22 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/civilian) "rmT" = ( @@ -26448,6 +26622,10 @@ }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/west/elevator) +"rsz" = ( +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) "rsP" = ( /obj/structure/cable/green{ d1 = 2; @@ -26860,10 +27038,8 @@ dir = 1 }, /obj/item/modular_computer/console/preset/command, -/obj/machinery/computer/security/telescreen{ - name = "Research Monitor"; - network = list("Research","Toxins Test Area","Robots","Anomaly Isolation","Research Outpost"); - pixel_y = 28 +/obj/item/toy/xmastree{ + pixel_y = 11 }, /turf/simulated/floor/tiled/white, /area/surface/station/crew_quarters/heads/rdoffice) @@ -28051,6 +28227,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "szd" = ( @@ -29999,6 +30179,22 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/surface/station/security/prison) +"tBf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) "tBq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/plain, @@ -30928,6 +31124,7 @@ /obj/machinery/light{ dir = 4 }, +/obj/item/toy/xmastree, /turf/simulated/floor/carpet, /area/surface/station/crew_quarters/sleep/Dorm_3) "uiT" = ( @@ -31856,6 +32053,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 8 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "uSL" = ( @@ -33783,6 +33984,10 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "wkH" = ( @@ -36085,6 +36290,10 @@ dir = 1 }, /obj/structure/table/bench/padded, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techmaint, /area/surface/station/hallway/secondary/secondfloor/command) "xwr" = ( @@ -36316,6 +36525,10 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/patient_wing) "xFM" = ( @@ -60039,7 +60252,7 @@ ddU ddU sBb rMU -iYW +jeC oWj dfb cOD @@ -60296,7 +60509,7 @@ ddU ddU sBb dFq -iYW +jeC gdJ xVx cOD @@ -60553,7 +60766,7 @@ ddU ddU sBb rMU -iYW +jeC jvK oZX xVx @@ -61324,7 +61537,7 @@ ddU ddU ddU mxN -jIT +tBf oQQ gtF lcF @@ -61581,7 +61794,7 @@ ddU ddU ddU rMU -iYW +jeC lyD uSL wRE @@ -63123,7 +63336,7 @@ ddU ddU sBb rMU -jIT +tBf juh tzq xdj @@ -63380,7 +63593,7 @@ ddU ddU sBb tWb -iYW +jeC imI pJV kMa @@ -64151,7 +64364,7 @@ kst kst lnd bow -iYW +jeC qNP cCD lQR @@ -69025,8 +69238,13 @@ uwO uwO uwO uwO +<<<<<<< HEAD uDG iaD +======= +aPW +rsz +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 iaD jIo ifR @@ -70575,7 +70793,7 @@ leV xHL mwp pim -lMj +mgT mRL dki hYK @@ -70832,7 +71050,7 @@ xDt mKi srw bQX -lMj +mgT jgu pBd ibd @@ -71346,7 +71564,7 @@ vfL vHm eLU dmy -oXY +agf oAv udE kki @@ -71603,7 +71821,7 @@ oVJ xHL cAf jVB -oXY +agf ksz hAN eua @@ -71860,7 +72078,7 @@ eXV mKi dNq bQX -lMj +mgT kzK qIh eua @@ -72870,7 +73088,7 @@ kby lvx etV poa -xYF +dmY clG uSB uSB @@ -72878,7 +73096,7 @@ uSB jlZ syR iSF -cKe +mpF cKe cKe kCl diff --git a/maps/cynosure/cynosure-6.dmm b/maps/cynosure/cynosure-6.dmm index 5fbfaa4e5b..0105ffc05d 100644 --- a/maps/cynosure/cynosure-6.dmm +++ b/maps/cynosure/cynosure-6.dmm @@ -159,6 +159,16 @@ /obj/item/weapon/storage/box/glasses/square, /turf/simulated/floor/carpet, /area/shuttle/merchant/home) +"aiB" = ( +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "aiQ" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/unsimulated/floor{ @@ -353,6 +363,23 @@ icon_state = "dark" }, /area/centcom/security) +"aoW" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "apA" = ( /obj/structure/holostool{ dir = 4 @@ -522,6 +549,10 @@ /obj/machinery/vending/cigarette{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -691,6 +722,16 @@ icon_state = "carpet" }, /area/centcom/command) +"aLT" = ( +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "aMd" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 @@ -842,6 +883,10 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/white, /area/centcom/bar) "aVM" = ( @@ -1149,6 +1194,27 @@ /obj/machinery/optable, /turf/simulated/shuttle/floor/white, /area/skipjack_station/start) +<<<<<<< HEAD +======= +"boh" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"boo" = ( +/obj/structure/shuttle/falsewall_no_join{ + icon = 'icons/turf/wall_masks_tgmc.dmi'; + icon_state = "white2" + }, +/turf/simulated/floor/plating, +/area/shuttle/escape/centcom) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "bos" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -1646,6 +1712,24 @@ }, /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/syndicate_elite/mothership) +"bVj" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/obj/item/toy/xmastree, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "bVM" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/unsimulated/floor{ @@ -1843,6 +1927,10 @@ "cfy" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -3677,6 +3765,10 @@ "etB" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_alc/full, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -3915,6 +4007,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 6 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/tiles.dmi'; icon_state = "steel" @@ -4656,6 +4752,10 @@ /obj/machinery/vending/boozeomat{ req_access = null }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -4668,6 +4768,25 @@ /obj/machinery/teleport/station, /turf/simulated/shuttle/plating, /area/ninja_dojo/start) +"fzU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "fzX" = ( /turf/unsimulated/wall, /area/centcom/medical) @@ -4697,6 +4816,23 @@ icon_state = "techfloor_gray" }, /area/centcom/specops) +"fAL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/flora/pottedplant/xmas, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "fBf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -5403,6 +5539,22 @@ icon_state = "lino" }, /area/tdome) +"gou" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "gow" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/voidcraft/dark, @@ -5697,6 +5849,10 @@ /area/centcom/bar) "gIh" = ( /obj/structure/closet/secure_closet/bar, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -6508,6 +6664,10 @@ /area/centcom/command) "hIC" = ( /obj/structure/flora/pottedplant/stoutbush, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/tiles.dmi'; icon_state = "steel" @@ -6608,6 +6768,19 @@ name = "plating" }, /area/centcom/living) +"hMX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "hNd" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -6781,6 +6954,10 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/white, /area/centcom/bar) "hUw" = ( @@ -6913,6 +7090,7 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 9 }, +/obj/item/toy/xmastree, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/tiles.dmi'; icon_state = "white" @@ -8742,6 +8920,7 @@ /area/holodeck/source_boxingcourt) "khb" = ( /obj/structure/table/woodentable, +/obj/item/toy/xmas_cracker, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -9544,6 +9723,7 @@ /obj/structure/table/woodentable, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/brown/border, +/obj/item/toy/xmastree, /turf/simulated/floor/tiled/white, /area/centcom/bar) "kPT" = ( @@ -9782,6 +9962,16 @@ icon_state = "steel" }, /area/shuttle/trade) +"leI" = ( +/obj/item/stool/padded, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) "leY" = ( /obj/machinery/light{ dir = 4 @@ -9912,6 +10102,10 @@ /obj/effect/floor_decal/corner/green/border{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/tiles.dmi'; icon_state = "steel" @@ -10199,6 +10393,12 @@ icon_state = "steel" }, /area/centcom/terminal) +"lFE" = ( +/obj/structure/flora/tree/pine/xmas/presents, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) "lFQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -11826,6 +12026,10 @@ /obj/machinery/computer/arcade{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -11892,6 +12096,22 @@ icon_state = "dark" }, /area/centcom/specops) +"nDE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "nDQ" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/vox/medic, @@ -12384,6 +12604,23 @@ icon_state = "wood" }, /area/centcom/bar) +"oke" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) "okj" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 8 @@ -13289,6 +13526,21 @@ }, /turf/simulated/shuttle/floor/red, /area/shuttle/response_ship/start) +"pmz" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "pnf" = ( /obj/machinery/light{ dir = 8 @@ -13683,6 +13935,16 @@ icon_state = "techfloor_gray" }, /area/centcom/specops) +"pGc" = ( +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "pGg" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_theatre) @@ -14271,6 +14533,15 @@ "qpd" = ( /turf/simulated/shuttle/floor/voidcraft/dark, /area/ninja_dojo/start) +"qpg" = ( +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) "qqa" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14953,6 +15224,19 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/merchant/home) +"qZM" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/large{ + pixel_y = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) "rar" = ( /obj/structure/table/steel_reinforced, /obj/random/plushie, @@ -16126,6 +16410,10 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/white, /area/centcom/bar) "sdu" = ( @@ -16510,6 +16798,10 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 9 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/white, /area/centcom/bar) "sBr" = ( @@ -16924,6 +17216,10 @@ /obj/effect/floor_decal/spline/plain{ dir = 4 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -17643,6 +17939,17 @@ }, /turf/simulated/floor/holofloor/lino, /area/holodeck/source_meetinghall) +"tNu" = ( +/obj/structure/table/bench/padded, +/obj/structure/sign/christmas/lights{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "tOF" = ( /obj/effect/floor_decal/sign/small_f, /turf/simulated/floor/holofloor/wood, @@ -18327,7 +18634,11 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 5 }, -/obj/structure/flora/pottedplant/decorative, +/obj/structure/flora/pottedplant/xmas, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/white, /area/centcom/bar) "uAk" = ( @@ -19013,6 +19324,10 @@ /area/shuttle/supply) "vpD" = ( /obj/structure/table/bench/padded, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/tiles.dmi'; icon_state = "steel" @@ -20106,10 +20421,32 @@ /area/syndicate_station/start) "wvQ" = ( /obj/machinery/smartfridge, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/bar) +"wvR" = ( +/obj/machinery/floor_light{ + anchored = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/bar) "wwH" = ( /obj/structure/table/steel, /obj/item/weapon/storage/firstaid/surgery, @@ -20530,6 +20867,10 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, /turf/simulated/floor/tiled/white, /area/centcom/bar) "wTz" = ( @@ -20787,6 +21128,16 @@ icon_state = "dark" }, /area/wizard_station) +"xeX" = ( +/obj/structure/table/marble, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) "xfC" = ( /obj/item/clothing/head/xenos, /turf/unsimulated/floor{ @@ -20989,6 +21340,15 @@ /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled/white, /area/centcom/bar) +"xri" = ( +/obj/structure/table/marble, +/obj/structure/balloon/xmas{ + pixel_y = 10 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) "xrk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -21107,6 +21467,21 @@ }, /turf/simulated/floor/holofloor/space, /area/holodeck/source_space) +"xxq" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/sign/christmas/lights{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) "xyf" = ( /obj/effect/floor_decal/sign/small_e, /turf/simulated/floor/holofloor/wood, @@ -29969,7 +30344,7 @@ puk puk puk pAD -kXS +hMX kXS kXS pAD @@ -30226,7 +30601,7 @@ puk puk puk pAD -gBA +aiB gBA gBA pAD @@ -30483,7 +30858,7 @@ puk puk puk pAD -gBA +aiB piF gBA pAD @@ -30740,7 +31115,7 @@ puk puk puk pAD -gBA +aiB piF gBA gSq @@ -30997,7 +31372,7 @@ puk puk puk pAD -gBA +aiB piF gBA mBj @@ -31012,19 +31387,19 @@ puk puk fVm wvQ +qpg +qpg +qpg +qpg haV haV haV haV haV -haV -haV -haV -haV -nAm +leI nyS azw -mqp +qZM iuf jEH eSW @@ -31042,7 +31417,7 @@ nxV nxV nxV nxV -amw +nDE quS vjU nxV @@ -31254,7 +31629,7 @@ puk puk puk pAD -gBA +aiB gBA gBA gSq @@ -31299,7 +31674,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA nxV @@ -31511,7 +31886,7 @@ puk puk puk pAD -gBA +aiB gBA gBA pAD @@ -31556,7 +31931,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA pEe @@ -31768,7 +32143,7 @@ vlH vlH vlH vlH -gBA +aiB piF gBA pAD @@ -31813,7 +32188,7 @@ kpE kpE kpE pEe -amw +nDE quS rLA nxV @@ -32025,7 +32400,7 @@ wfT wfT wfT vlH -gBA +aiB piF gBA pAD @@ -32070,7 +32445,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -32282,7 +32657,7 @@ pCM tLG wfT vlH -gBA +aiB piF gBA pAD @@ -32296,10 +32671,10 @@ mTz mTz mTz fVm -oNF +xeX wux wux -oNF +xri snZ haV haV @@ -32327,7 +32702,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -32539,7 +32914,7 @@ pSk dGs wfT vlH -gBA +aiB gBA gBA pAD @@ -32562,7 +32937,7 @@ haV haV haV haV -haV +lFE haV haV haV @@ -32584,7 +32959,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA pEe @@ -32796,7 +33171,7 @@ pSk dGs wfT vlH -gBA +aiB gBA gBA pAD @@ -32810,7 +33185,7 @@ rrI xOi mTz fVm -yce +wvR yce yce yce @@ -32841,7 +33216,7 @@ kpE kpE kpE nxV -amw +nDE quS rLA nxV @@ -33053,7 +33428,7 @@ pSk dGs wfT roT -gBA +aiB piF gBA gSq @@ -33067,7 +33442,7 @@ rrI xOi mTz fVm -yce +wvR yce yce yce @@ -33098,7 +33473,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -33310,7 +33685,7 @@ pSk dGs wfT roT -gBA +aiB piF gBA gSq @@ -33324,7 +33699,7 @@ rrI nYl qWM fVm -yce +wvR yce yce yce @@ -33355,7 +33730,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -33567,7 +33942,7 @@ aLL dGs wfT roT -gBA +aiB piF gBA gSq @@ -33581,7 +33956,7 @@ rrI pXt gBA fVm -yce +wvR yce yce yce @@ -33612,7 +33987,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -33824,7 +34199,7 @@ vFe nmu wfT vlH -gBA +aiB gBA gBA pAD @@ -33838,7 +34213,7 @@ qup sbj gBA fVm -yce +wvR yce yce yce @@ -33869,7 +34244,7 @@ kpE kpE kpE nxV -amw +nDE quS rLA nxV @@ -34081,7 +34456,7 @@ wfT wfT wfT vlH -gBA +aiB gBA gBA pAD @@ -34126,7 +34501,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA pEe @@ -34352,16 +34727,16 @@ pAD chb iUS pAD -hIC +xxq vpD vpD vpD +aLT +aLT gBA gBA -gBA -gBA -gBA -gBA +aLT +aLT vpD vpD vpD @@ -34383,7 +34758,7 @@ pEe pEe nxV qeE -amw +nDE qTA rLA pEe @@ -34609,7 +34984,7 @@ pAD gSq gSq pAD -gBA +aiB gBA piF piF @@ -35637,7 +36012,7 @@ pAD gSq gSq pAD -gBA +aiB gBA piF piF @@ -35894,20 +36269,20 @@ pAD iUS iUS pAD -hIC -gBA -gBA -gBA +pmz +pGc +pGc +pGc wcx -gBA -vpD -vpD -gBA -gBA +pGc +tNu +tNu +pGc +pGc mRQ wcx -gBA -hIC +pGc +boh pAD boE oUZ @@ -35925,7 +36300,7 @@ pEe pEe nxV use -amw +nDE qTA rLA pEe @@ -36137,7 +36512,7 @@ wha sqs sqs jKw -gBA +aiB gBA gBA pAD @@ -36182,7 +36557,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA pEe @@ -36394,7 +36769,7 @@ wha sqs jrv jKw -gBA +aiB gBA gBA pAD @@ -36439,7 +36814,7 @@ kpE kpE kpE nxV -amw +nDE quS rLA nxV @@ -36651,7 +37026,7 @@ wha sqs wha vDV -gBA +aiB piF gBA gSq @@ -36696,7 +37071,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -36908,7 +37283,7 @@ wha wha wha vDV -gBA +aiB piF gBA gSq @@ -36953,7 +37328,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -37165,7 +37540,7 @@ wha wha wha vDV -gBA +aiB piF gBA gSq @@ -37210,7 +37585,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -37422,7 +37797,7 @@ wha wha wha jKw -gBA +aiB gBA gBA pAD @@ -37467,7 +37842,7 @@ kpE kpE kpE nxV -amw +nDE quS rLA nxV @@ -37679,7 +38054,7 @@ wha wha wha jKw -gBA +aiB gBA gBA pAD @@ -37724,7 +38099,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA pEe @@ -37936,7 +38311,7 @@ wha wha tra jKw -gBA +aiB piF gBA pAD @@ -37981,7 +38356,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -38193,7 +38568,7 @@ jKw jKw jKw jKw -gBA +aiB piF gBA pAD @@ -38238,7 +38613,7 @@ kpE kpE kpE pEe -amw +nDE qTA rLA pEe @@ -38450,7 +38825,7 @@ puk puk puk pAD -gBA +aiB piF gBA pAD @@ -38495,7 +38870,7 @@ kpE kpE kpE pEe -amw +nDE quS rLA nxV @@ -38707,7 +39082,7 @@ puk puk puk pAD -gBA +aiB gBA gBA pAD @@ -38752,7 +39127,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA pEe @@ -39009,7 +39384,7 @@ kpE kpE kpE nxV -amw +nDE qTA rLA nxV @@ -39266,7 +39641,7 @@ kpE kpE nxV nxV -amw +nDE quS rdN nxV @@ -40298,25 +40673,25 @@ wHT quS wHT nxV -wCB -xWO -lFQ -xWO -lFQ -xWO -lFQ -xWO -wCB -xWO -lFQ -xWO +aoW +fzU +gou +fzU +gou +fzU +fAL +fzU +aoW +fzU +gou +fzU llZ -wCB -wCB -eox -xWO -lFQ -xWO +bVj +aoW +oke +fzU +fAL +fzU eHd nxV puk diff --git a/maps/cynosure/cynosure-7.dmm b/maps/cynosure/cynosure-7.dmm index cc01185cfe..dd595cf42d 100644 --- a/maps/cynosure/cynosure-7.dmm +++ b/maps/cynosure/cynosure-7.dmm @@ -18,6 +18,19 @@ }, /turf/simulated/floor/outdoors/mask, /area/surface/outside/wilderness/mountains) +<<<<<<< HEAD +======= +"dj" = ( +/obj/vehicle/boat/sifwood, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"dV" = ( +/turf/simulated/floor/outdoors/shelfice, +/area/surface/outside/river/gautelfr) +"eZ" = ( +/turf/simulated/wall/sifwood, +/area/surface/wilderness/shack) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "fy" = ( /obj/structure/cliff/automatic, /turf/simulated/floor/outdoors/mask, @@ -56,9 +69,6 @@ /obj/structure/prop/rock/small/alt, /turf/simulated/floor/outdoors/mud/sif/planetuse, /area/surface/outside/wilderness/normal) -"lt" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/wilderness/mountains) "mA" = ( /obj/structure/cliff/automatic{ dir = 6 @@ -79,12 +89,6 @@ /obj/structure/prop/rock/small, /turf/simulated/floor/outdoors/mud/sif/planetuse, /area/surface/outside/wilderness/normal) -"oG" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/gautelfr) "oR" = ( /turf/simulated/floor/outdoors/mask, /area/surface/outside/wilderness/deep) @@ -166,12 +170,6 @@ /obj/effect/zone_divider, /turf/simulated/floor/water/deep, /area/surface/outside/river/gautelfr) -"zS" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/gautelfr) "Aq" = ( /obj/effect/zone_divider, /turf/simulated/floor/outdoors/mask, @@ -180,7 +178,7 @@ /turf/simulated/floor/outdoors/mask, /area/surface/outside/wilderness/normal) "Ay" = ( -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/wilderness/mountains) "Be" = ( /obj/structure/cliff/automatic{ @@ -195,12 +193,19 @@ }, /turf/simulated/floor/outdoors/grass/sif, /area/surface/outside/wilderness/mountains) +<<<<<<< HEAD "Cb" = ( /obj/structure/cliff/automatic/corner{ dir = 6 }, /turf/simulated/floor/outdoors/mask, /area/surface/outside/wilderness/normal) +======= +"CP" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/outdoors/shelfice, +/area/surface/outside/river/gautelfr) +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 "CR" = ( /turf/simulated/floor/outdoors/dirt/sif, /area/surface/outside/wilderness/mountains) @@ -235,12 +240,6 @@ "Hb" = ( /turf/simulated/floor/outdoors/dirt/sif, /area/surface/outside/wilderness/deep) -"HF" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/gautelfr) "Ih" = ( /obj/structure/prop/rock/waterflat, /turf/simulated/floor/water, @@ -264,7 +263,7 @@ /obj/effect/map_effect/portal/line/side_b{ dir = 1 }, -/turf/simulated/floor/water/deep, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "MS" = ( /turf/simulated/floor/water/deep, @@ -294,7 +293,7 @@ /area/surface/outside/path/wilderness) "Sa" = ( /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "Sl" = ( /turf/simulated/floor/outdoors/mud/sif/planetuse, @@ -307,7 +306,7 @@ /obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) "UA" = ( /obj/structure/cliff/automatic/corner{ @@ -315,6 +314,10 @@ }, /turf/simulated/floor/outdoors/mask, /area/surface/outside/wilderness/mountains) +"VF" = ( +/obj/structure/prop/rock/small/water, +/turf/simulated/floor/outdoors/shelfice, +/area/surface/outside/river/gautelfr) "VU" = ( /obj/structure/cliff/automatic{ dir = 2 @@ -351,7 +354,7 @@ /obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/shelfice, /area/surface/outside/river/gautelfr) (1,1,1) = {" @@ -705,19 +708,19 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -tM -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -963,19 +966,19 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -tM -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -1220,19 +1223,19 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -tM -tM -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -1478,18 +1481,18 @@ oR oR oR oR -tM -MS -MS -MS -MS +dV +dV +dV +dV +dV MS tM MS -MS -tM -tM -tM +dV +dV +dV +dV oR oR oR @@ -1735,18 +1738,18 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV +dV +dV MS MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV oR oR oR @@ -1993,18 +1996,18 @@ oR oR oR oR +dV +dV +dV +dV +dV tM MS MS -MS -MS -tM -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV oR oR oR @@ -2250,18 +2253,18 @@ oR oR oR oR -tM +dV +dV +dV +dV +dV +dV tM MS -MS -MS -MS -tM -MS -MS -tM -tM -tM +dV +dV +dV +dV oR oR oR @@ -2504,17 +2507,17 @@ oR oR oR oR +dV +dV +dV +dV +dV tM MS -MS -MS -MS -tM -MS -MS -tM -tM -tM +dV +dV +dV +dV oR oR oR @@ -2942,6 +2945,212 @@ oR oR oR oR +<<<<<<< HEAD +======= +PH +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +dV +dV +dV +dV +dV +dV +MS +dV +dV +dV +dV +dV +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Aq +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +VU +GK +GK +bE +"} +(11,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 oR oR oR @@ -3043,17 +3252,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -3327,18 +3536,18 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -3611,18 +3820,18 @@ oR oR oR oR -tM -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -3894,17 +4103,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -4190,17 +4399,17 @@ oR oR oR oR -tM -tM -tM -tM -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -4482,17 +4691,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -4769,16 +4978,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -5073,16 +5282,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -5385,16 +5594,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -5685,17 +5894,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -5983,17 +6192,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -6295,17 +6504,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -6592,17 +6801,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -6886,17 +7095,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -7192,16 +7401,16 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -7502,16 +7711,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV oR oR oR @@ -7801,17 +8010,17 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV oR oR oR @@ -8107,16 +8316,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS MS MS -MS -MS -tM -tM -tM +dV +dV +dV oR oR oR @@ -8414,16 +8623,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV oR oR oR @@ -8708,16 +8917,16 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV +dV +dV MS -MS -MS -MS -MS -tM -tM +dV +dV +dV oR oR oR @@ -9005,17 +9214,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -9301,16 +9510,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -9602,16 +9811,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -9902,15 +10111,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -10206,15 +10415,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -10508,16 +10717,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -10816,16 +11025,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -11126,15 +11335,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -11422,16 +11631,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -11728,16 +11937,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -12028,16 +12237,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -12328,15 +12537,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -12629,16 +12838,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -12916,16 +13125,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -13186,15 +13395,15 @@ oR oR oR oR -tM -tM +dV +dV +dV MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV oR oR oR @@ -13462,15 +13671,15 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV oR oR oR @@ -13739,6 +13948,7 @@ oR oR oR oR +<<<<<<< HEAD tM tM tM @@ -13939,6 +14149,17 @@ oR oR oR oR +======= +dV +dV +dV +MS +MS +dV +dV +dV +dV +>>>>>>> d94406daccd... Merge pull request #8859 from Spookerton/greenjoe12345/xmas2022 oR oR oR @@ -14030,15 +14251,15 @@ oR oR oR oR -tM -tM +dV +dV +dV MS MS -MS -MS -tM -tM -tM +dV +dV +dV +dV oR oR oR @@ -14295,16 +14516,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV oR oR oR @@ -14552,16 +14773,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -14809,17 +15030,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -15067,16 +15288,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -15324,16 +15545,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -15581,16 +15802,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -15839,15 +16060,15 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -16096,15 +16317,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -16353,15 +16574,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -16610,16 +16831,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -16867,16 +17088,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -17124,16 +17345,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -17382,15 +17603,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -17639,15 +17860,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -17896,15 +18117,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -18153,15 +18374,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -18412,11 +18633,11 @@ PH PH Sa Sa -zn -zn -zn -zn -zn +Sa +Sa +Sa +Sa +Sa Sa Sa PH @@ -18667,15 +18888,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -18924,15 +19145,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -19181,15 +19402,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -19438,15 +19659,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -19695,16 +19916,16 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV oR oR oR @@ -19952,16 +20173,16 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -tM -tM +dV +dV +dV +dV oR oR oR @@ -20210,15 +20431,15 @@ oR oR oR oR -tM -tM +dV +dV +dV MS MS -MS -MS -MS -tM -tM +dV +dV +dV +dV oR oR oR @@ -20467,15 +20688,15 @@ oR oR oR oR -tM -tM +dV +dV +dV MS MS -MS -MS -MS -tM -tM +dV +dV +dV +dV oR oR oR @@ -20724,15 +20945,15 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV oR oR oR @@ -20981,15 +21202,15 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -tM -tM +dV +dV +dV oR oR oR @@ -21238,16 +21459,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -21495,16 +21716,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -21752,16 +21973,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV oR oR oR @@ -22009,17 +22230,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -22267,16 +22488,16 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -22524,16 +22745,16 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -22781,16 +23002,16 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -23038,15 +23259,15 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV +dV +dV tM Ax Ax @@ -23295,15 +23516,15 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV +dV +dV tM tM Ax @@ -23552,16 +23773,16 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV tM Ax Ax @@ -23809,17 +24030,17 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -24066,17 +24287,17 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -24323,17 +24544,17 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -24580,17 +24801,17 @@ oR oR oR oR -tM -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -24837,17 +25058,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -25094,16 +25315,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -25351,16 +25572,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -25608,17 +25829,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -25865,17 +26086,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -26123,16 +26344,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -26380,16 +26601,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -26637,16 +26858,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -26894,17 +27115,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -27151,17 +27372,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -27408,17 +27629,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -27666,16 +27887,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -27923,16 +28144,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -28180,16 +28401,16 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -28438,15 +28659,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -28695,15 +28916,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -28952,16 +29173,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -29209,16 +29430,16 @@ oR oR oR oR -tM -tM +dV +dV +dV MS MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -29466,16 +29687,16 @@ oR oR oR oR -tM -tM +dV +dV +dV MS MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -29723,16 +29944,16 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV MS MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -29980,16 +30201,16 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV MS MS -MS -MS -tM -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -30237,16 +30458,16 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV MS MS -MS -MS -tM -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -30495,15 +30716,15 @@ oR oR oR oR -tM -tM +dV +dV +dV MS MS -MS -MS -MS -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -30752,16 +30973,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -31009,17 +31230,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -tM -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -31266,17 +31487,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -31523,18 +31744,18 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -31780,18 +32001,18 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -32038,17 +32259,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -32295,17 +32516,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -32552,17 +32773,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -32809,18 +33030,18 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -33067,17 +33288,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -33324,17 +33545,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -33581,18 +33802,18 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -33838,18 +34059,18 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -34096,17 +34317,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -34353,17 +34574,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -34613,12 +34834,12 @@ oR id ZB ZB -zS -zS -zS -zS -zS -zS +ZB +ZB +ZB +ZB +ZB +ZB ZB ZB id @@ -35384,12 +35605,12 @@ oR id TP TP -oG -oG -oG -oG -oG -oG +TP +TP +TP +TP +TP +TP TP TP id @@ -35639,17 +35860,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -35896,16 +36117,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -36153,16 +36374,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -36410,16 +36631,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -36667,17 +36888,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -36924,17 +37145,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -37182,17 +37403,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -37439,17 +37660,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -37696,18 +37917,18 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -37954,17 +38175,17 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV +dV MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -38211,17 +38432,17 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV +dV MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -38469,16 +38690,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -38726,16 +38947,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -38983,17 +39204,17 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -39240,17 +39461,17 @@ oR oR oR oR -tM -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -39498,16 +39719,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -39755,16 +39976,16 @@ oR oR oR oR -tM -tM +dV +dV +dV +dV MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax @@ -40012,16 +40233,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -40269,16 +40490,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -40526,15 +40747,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -40783,15 +41004,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -41040,15 +41261,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -41298,14 +41519,14 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -41555,14 +41776,14 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -41812,15 +42033,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -42069,15 +42290,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -42326,15 +42547,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -42583,15 +42804,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -42840,15 +43061,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -43097,16 +43318,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -43354,16 +43575,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -43611,16 +43832,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -43868,16 +44089,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -44126,15 +44347,15 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -44383,16 +44604,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -44640,16 +44861,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -44897,16 +45118,16 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -45154,17 +45375,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -45411,17 +45632,17 @@ oR oR oR oR -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -45668,18 +45889,18 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -45926,17 +46147,17 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -46183,18 +46404,18 @@ oR oR oR oR -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -46441,17 +46662,17 @@ oR oR oR Ax -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -46699,17 +46920,17 @@ oR oR Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -46957,15 +47178,15 @@ oR Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -47214,16 +47435,16 @@ oR Ax Ax Ax -tM -tM -tM +dV +dV +dV +dV +dV MS MS -MS -MS -MS -tM -tM +dV +dV +dV Ax Ax Ax @@ -47472,16 +47693,16 @@ Ax Ax Ax Ax -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -47729,16 +47950,16 @@ Ax Ax Ax Ax -tM -tM +dV +dV +dV +dV MS MS MS -MS -MS -MS -MS -tM +dV +dV +dV Ax Ax Ax @@ -47987,16 +48208,16 @@ Ax Ax Ax Ax -tM -tM +dV +dV +dV +dV MS MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -48244,16 +48465,16 @@ Ax Ax Ax Ax -tM -tM +dV +dV +dV +dV +dV MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV Ax Ax Ax @@ -48501,17 +48722,17 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -48759,16 +48980,16 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -49017,16 +49238,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -49275,15 +49496,15 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -49532,16 +49753,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -49789,16 +50010,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -50047,15 +50268,15 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -50304,16 +50525,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -50562,15 +50783,15 @@ Ax Ax Ax Ax -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -50819,16 +51040,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -51076,16 +51297,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -51333,17 +51554,17 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -51592,13 +51813,13 @@ Aq Aq Aq Sa -zn -zn -zn -zn -zn -zn -zn +Sa +Sa +Sa +Sa +Sa +Sa +Sa Sa Sa Aq @@ -51848,17 +52069,17 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -52106,16 +52327,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -52363,17 +52584,17 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -52621,16 +52842,16 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -52879,16 +53100,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -53136,17 +53357,17 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -53394,16 +53615,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -53651,17 +53872,17 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -53909,16 +54130,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -54166,17 +54387,17 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -54423,17 +54644,17 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -54680,17 +54901,17 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -54938,16 +55159,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -55196,15 +55417,15 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -55453,15 +55674,15 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV tM Ax Ax @@ -55711,13 +55932,13 @@ Ax Ax Ax Ax -tM -MS -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV tM Ax Ax @@ -55968,13 +56189,13 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV tM tM Ax @@ -56226,15 +56447,15 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -56483,16 +56704,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -56741,16 +56962,16 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -56841,9 +57062,9 @@ nu Sl aU tM -tM -tM -HF +dV +dV +MK Ay "} (215,1,1) = {" @@ -56998,17 +57219,17 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -57044,63 +57265,63 @@ Ax Ax Ax Ax -tM -tM -tM -tM +dV +dV +dV +dV Ih tM -tM -tM -tM +dV +dV +dV Qw tM tM tM tM +dV +dV tM -tM +jh +dV +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +dV +dV +dV +dV +dV +dV +Ax +dV +dV +dV tM jh tM -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -Ax -tM -tM -tM -tM -tM -tM -Ax -tM -tM -tM -tM -jh -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV tM Qw tM -HF +MK Ay "} (216,1,1) = {" @@ -57255,18 +57476,18 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -57297,68 +57518,68 @@ Ax Aq Ax Ax +dV +dV +dV +dV +dV +dV +dV +dV tM tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV tM tM tM aU tM +dV +dV tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ih tM -tM -tM -tM -tM +dV +dV +dV +dV jh tM tM tM Ih tM -tM -tM +dV +dV tM tM vQ tM +dV tM -tM -tM -tM -tM -tM -MS +dV +dV +dV +dV +dV MK -lt +Ay "} (217,1,1) = {" jq @@ -57513,18 +57734,18 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -57550,72 +57771,72 @@ Ax Ax Ax Ax -tM +dV Sa -tM -tM -tM -tM -tM -tM -Qw -tM +dV +dV +dV +dV +dV +dV +VF +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MS MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM +dV +dV +dV +dV tM Qw tM tM tM aU -tM -tM +dV +dV vQ tM -tM -tM +dV +dV aU tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MS -MS -MS -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV jh tM -MS -MS -MS -MS +dV +dV +dV +dV MK -lt +Ay "} (218,1,1) = {" jq @@ -57770,21 +57991,21 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -57806,73 +58027,73 @@ Ax Ax Ax Ax -tM -tM +dV +dV Sa +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +MS +MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +MS +MS +dV +dV tM tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MK -lt +Ay "} (219,1,1) = {" jq @@ -58028,24 +58249,24 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -58057,78 +58278,78 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -tM -tM -zn -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +Sa +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Qw tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV tM Qw -tM +dV tM Ih -tM -MS -MS -MS +dV +dV +dV +dV +dV tM tM -tM -tM -HF +dV +MK Ay "} (220,1,1) = {" @@ -58286,106 +58507,106 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -MS -zn -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +Sa +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV vQ tM -tM -tM +dV +dV jh tM tM vQ tM +dV +dV +dV tM tM -tM -tM -tM -tM +dV tM Ih -MS -MS +dV +dV tM jh tM tM vQ tM -tM -tM -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV MS Ih tM Qw MS MS -tM +dV aU -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV tM Ih -tM -HF +dV +MK Ay "} (221,1,1) = {" @@ -58544,101 +58765,101 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -MS -MS +dV +dV +dV +dV +dV MS MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MS zn MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +tM +tM +dV +dV tM tM tM tM tM +dV +dV +dV Ax +dV +dV +dV +dV +dV +dV tM tM tM tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV tM Qw -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV tM vQ +dV tM -tM -tM -tM +dV +dV Ax Ax Ax -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax ct @@ -58801,52 +59022,52 @@ Ax Ax Ax Ax -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -MS -MS -MS -MS +dV +dV +dV +dV +dV +dV MS MS MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MS MS MS zn -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV tM Ax Ax @@ -58856,36 +59077,36 @@ Ax Ax Ax Ax -tM -tM +dV +dV Ax Ax Ax Ax -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV Ax Ax Ax Ax Ax Ax -tM -tM -tM -tM +dV +dV +dV +dV tM jh tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -59059,49 +59280,49 @@ Ax Ax Ax Ax -tM -tM -tM +dV +dV +dV +dV +dV +dV MS MS MS +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MS MS MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -zn -MS -MS -tM -tM -tM -tM -tM -tM +dV +Sa +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -59318,46 +59539,46 @@ Ax Ax Ax Ax -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -zn -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +CP +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +Sa +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -59575,45 +59796,45 @@ Ax Ax Ax Ax -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Sa -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -59832,43 +60053,43 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Sa -tM -tM -tM -tM +dV +dV +dV +dV Ax Ax Ax @@ -60090,40 +60311,40 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -MS -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Sa -tM -tM +dV +dV Ax Ax Ax @@ -60349,35 +60570,35 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Aq Ax Ax @@ -60608,29 +60829,29 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -MS -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -60867,24 +61088,24 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -MS -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -61128,19 +61349,19 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax @@ -61387,15 +61608,15 @@ Ax Ax Ax Ax -tM -tM -tM -tM -tM -tM -tM -tM -tM +dV +dV +dV +dV +dV +dV +dV +dV +dV Ax Ax Ax diff --git a/maps/cynosure/datums/random_map.dm b/maps/cynosure/datums/random_map.dm index 9ae314f624..31d4daa9aa 100644 --- a/maps/cynosure/datums/random_map.dm +++ b/maps/cynosure/datums/random_map.dm @@ -26,17 +26,7 @@ T.update_icon() /datum/random_map/noise/sif/get_appropriate_path(var/value) - switch(value) - if(0) - return /turf/simulated/floor/outdoors/mud/sif/planetuse - if(1 to 2) - return /turf/simulated/floor/outdoors/dirt/sif/planetuse - if(3 to 5) - return /turf/simulated/floor/outdoors/grass/sif/planetuse - if(6 to 8) - return /turf/simulated/floor/outdoors/grass/sif/forest/planetuse - if(9) - return /turf/simulated/floor/outdoors/snow/sif/planetuse + return /turf/simulated/floor/outdoors/snow/sif/planetuse /datum/random_map/noise/sif/get_additional_spawns(var/value, var/turf/T) if(prob(45) || T.check_density()) @@ -77,13 +67,7 @@ descriptor = "Sif forest (roundstart)" /datum/random_map/noise/sif/forest/get_appropriate_path(var/value) - switch(value) - if(0 to 3) - return /turf/simulated/floor/outdoors/grass/sif/planetuse - if(4 to 6) - return /turf/simulated/floor/outdoors/grass/sif/forest/planetuse - if(7 to 9) - return /turf/simulated/floor/outdoors/snow/sif/planetuse + return /turf/simulated/floor/outdoors/snow/sif/planetuse /datum/random_map/noise/sif/forest/get_additional_spawns(var/value, var/turf/T) if(prob(25) || T.check_density()) diff --git a/maps/groundbase/gb-z2.dmm b/maps/groundbase/gb-z2.dmm index a5a10c1c5d..ca82cb206c 100644 --- a/maps/groundbase/gb-z2.dmm +++ b/maps/groundbase/gb-z2.dmm @@ -132,6 +132,25 @@ }, /turf/simulated/floor/tiled/white, /area/groundbase/medical/lobby) +<<<<<<< HEAD +======= +"av" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"aw" = ( +/obj/machinery/firework_launcher, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +>>>>>>> 5dad1cf58a... Merge pull request #14245 from Heroman3003/firework-stuff "ax" = ( /obj/structure/closet/secure_closet/personal, /obj/item/weapon/towel/random, @@ -23017,7 +23036,7 @@ aB PR lw Vr -Vr +aw Bl ag ag diff --git a/maps/southern_cross/southern_cross-2.dmm b/maps/southern_cross/southern_cross-2.dmm index 56d03beb62..6cc32446c1 100644 --- a/maps/southern_cross/southern_cross-2.dmm +++ b/maps/southern_cross/southern_cross-2.dmm @@ -1482,7 +1482,7 @@ "aYx" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/recharger/wallcharger{pixel_x = -26; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/warden) "aYy" = (/turf/simulated/wall/r_wall,/area/engineering/engine_waste) "aYA" = (/obj/machinery/door/blast/regular{id = "EngineVent"; name = "Reactor Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced/airless,/area/engineering/engine_room) -"aYB" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; id = "EngineEmitter"; state = 2; icon_state = "emitter2"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/engineering/engine_room) +"aYB" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; icon_state = "emitter2"; id = "EngineEmitter"; state = 2},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/engineering/engine_room) "aYC" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Power"; name_tag = "Engine Power"},/turf/simulated/floor,/area/engineering/engine_room) "aYD" = (/obj/item/modular_computer/console/preset/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) "aYE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room) @@ -2926,7 +2926,7 @@ "bXa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "bXb" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/window/reinforced/tinted/frosted,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop) "bXg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/chapel) -"bXh" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/sink/countertop{dir = 2; pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) +"bXh" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/sink/countertop{pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) "bXj" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) "bXk" = (/turf/simulated/wall,/area/lawoffice) "bXq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) @@ -3239,7 +3239,7 @@ "chp" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/hydroponics) "chq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) "chs" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Gallery"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 8},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) -"cht" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) +"cht" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) "chy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft) "chz" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft) "chE" = (/obj/structure/noticeboard/airlock,/turf/simulated/wall,/area/crew_quarters/barrestroom) @@ -3384,19 +3384,19 @@ "cmD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -20},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery) "cmE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/camera/network/civilian{c_tag = "CIV - Gallery Bow"; dir = 10},/obj/machinery/newscaster{pixel_y = -30},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery) "cmF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"cmH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) +"cmH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "cmO" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_r"},/turf/simulated/floor/airless,/area/shuttle/cryo/station) "cmP" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery) "cmQ" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies) "cmT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies) -"cna" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gallery"},/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) +"cna" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gallery"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) "cnb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva) "cnc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bar) "cnd" = (/obj/item/stack/rods,/obj/structure/lattice,/turf/space,/area/space) "cnf" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "tabletop_window_tint"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/library) "cnm" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/oracarpet,/area/library) "cnq" = (/obj/structure/table/woodentable,/obj/structure/noticeboard{pixel_y = 27},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/item/weapon/paper_bin{pixel_x = 7; pixel_y = 8},/obj/item/weapon/tape_roll,/obj/item/weapon/pen/fountain5,/obj/item/weapon/pen/fountain6{pixel_y = 7},/turf/simulated/floor/wood/alt/parquet,/area/library) -"cns" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6; pixel_y = 0},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) +"cns" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) "cnt" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) "cny" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2) "cnC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2) @@ -3405,7 +3405,7 @@ "cnF" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) "cnI" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "cnJ" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/landmark/start{name = "Intern"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"cnL" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9; pixel_y = 0},/obj/machinery/button/windowtint{id = "tabletop_window_tint"; pixel_x = 12; pixel_y = 25},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/library) +"cnL" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9},/obj/machinery/button/windowtint{id = "tabletop_window_tint"; pixel_x = 12; pixel_y = 25},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/library) "cnM" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/library) "cnN" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/library) "cnP" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Library"; sortType = "Library"},/turf/simulated/floor/tiled,/area/library) @@ -4503,7 +4503,7 @@ "fSY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "fTt" = (/obj/structure/sign/directions/evac{pixel_y = -10},/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fscenter) "fUK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/event/present,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port) -"fUQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) +"fUQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "fVj" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/ward) "fVu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research) "fVv" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/navbeacon/delivery/east{location = "Research Division"},/turf/simulated/floor/tiled,/area/rnd/research) @@ -4588,10 +4588,10 @@ "guC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) "gvv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2) "gvF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) -"gwp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Starboard"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"gwp" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Starboard"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/rnd/research/particleaccelerator) "gxV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3) "gyf" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge) -"gyw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"gyw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/stairs/spawner/east,/obj/structure/cable/green{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/up,/obj/structure/sign/warning/radioactive{pixel_y = 32},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/rnd/research/particleaccelerator) "gyA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/emcloset,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing) "gyD" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom) "gyT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/floor/tiled/white,/area/rnd/mixing) @@ -4691,7 +4691,7 @@ "hai" = (/obj/structure/table/glass,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/soap/nanotrasen,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom) "hax" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2) "hay" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/fscenter) -"haC" = (/obj/structure/easel,/obj/item/canvas/nineteen_nineteen{pixel_y = 10},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) +"haC" = (/obj/structure/easel,/obj/item/canvas/nineteen_nineteen,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) "haO" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2) "hbf" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter) "hcg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/tiled,/area/medical/morgue) @@ -4712,7 +4712,7 @@ "hgn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research) "hgv" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1) "hgz" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research) -"hgO" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southright{dir = 4; name = "Hydroponics"},/obj/machinery/door/window/northleft{dir = 8; name = "Hydroponics"; req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) +"hgO" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southright{dir = 4; name = "Hydroponics"},/obj/machinery/door/window/northleft{dir = 8; name = "Hydroponics"; req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) "hhw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva) "hhQ" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) "hiu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics) @@ -4789,13 +4789,13 @@ "hGX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3) "hHj" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) "hHG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) -"hIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"hIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research) "hIn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/storage/primary) "hIE" = (/turf/simulated/wall,/area/maintenance/medbay) "hIK" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter) "hIR" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/dark,/area/medical/biostorage) "hJg" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = -27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2) -"hJo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"hJo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/research) "hJw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = list(28)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) "hJC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) "hJU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Toxins Lab"; req_access = list(7)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/mixing) @@ -4906,9 +4906,9 @@ "ikX" = (/obj/machinery/vending/fitness,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay2) "ilk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room) "ilr" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/techmaint,/area/medical/cryo) -"ily" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) -"ilQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) -"ini" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/research) +"ily" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/structure/closet/radiation{anchored = 1; starts_with = list(/obj/item/clothing/suit/radiation = 4, /obj/item/clothing/head/radiation = 4, /obj/item/device/geiger = 4)},/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled/white,/area/rnd/research) +"ilQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"ini" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research) "inE" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay) "ioL" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge) "ipd" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hydroponics) @@ -4956,6 +4956,7 @@ "iES" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "iEX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "iFy" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) +"iFC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) "iGf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "iHF" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) "iHG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2) @@ -4971,7 +4972,7 @@ "iJY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/wall,/area/maintenance/substation/civilian) "iKa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/research) "iKg" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) -"iKn" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/smartfridge/sheets{density = 0; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"iKn" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/smartfridge/sheets{density = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) "iKA" = (/obj/machinery/autolathe,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab) "iKC" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway) "iKM" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/window/eastright,/obj/item/clothing/suit/space,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva) @@ -5235,7 +5236,7 @@ "kpx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) "kqp" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) "kqH" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/lino,/area/chapel/office) -"kqI" = (/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = -6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 0},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -4; pixel_y = -5},/obj/item/paint_brush{pixel_x = -6; pixel_y = -1},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) +"kqI" = (/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = -6},/obj/item/paint_palette{pixel_x = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -4; pixel_y = -5},/obj/item/paint_brush{pixel_x = -6; pixel_y = -1},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) "krH" = (/obj/structure/dispenser,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing) "krQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) "krZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing) @@ -5435,7 +5436,7 @@ "lIk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2) "lIC" = (/obj/machinery/computer/timeclock/premade/south,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter) "lIY" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) -"lJh" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/chair/sofa/right/brown{dir = 2; layer = 2.9},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library) +"lJh" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/chair/sofa/right/brown{layer = 2.9},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library) "lJn" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood/alt/parquet,/area/library) "lJs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter) "lKa" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter) @@ -5697,7 +5698,7 @@ "nrm" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Central Subgrid"; name_tag = "Central Subgrid"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/substation/central) "nsS" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway) "ntH" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/central) -"ntX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies) +"ntX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies) "nuH" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Central"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/central) "nuJ" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/dark,/area/chapel/main) "nve" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar) @@ -6331,6 +6332,7 @@ "rrh" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3) "rrB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/chapel) "rrL" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/library) +"rsf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/rnd/research) "rsq" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway) "rsK" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) "rsM" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research) @@ -6420,7 +6422,7 @@ "rQx" = (/obj/machinery/camera/network/research{c_tag = "SCI - Workshop"; dir = 1},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/dark,/area/rnd/workshop) "rQF" = (/obj/structure/bed/chair/sofa/right/brown{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/artgallery) "rQI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1) -"rRc" = (/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) +"rRc" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) "rRg" = (/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind,/obj/random/maintenance/research,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/rnd/workshop) "rRk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/vending/loadout/loadout_misc,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve) "rRD" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/super{pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve) @@ -7500,8 +7502,8 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaafaafdYTaafaaajBVaaaaaaaafaaaaaaanXdardcSddHaBeddOaDOaDOazNafUdendgYafVdkbaxAdlxdlPaxCaxDaxEazUaxGaLGaxIaxJaxKaCMaAadmmaxOaxPaxQsyUafWafXsyUdojawBsyUaSlaSlsyUaxYaBCayaazhafYaBCsyUsyUsyUsyUaLSaLSaLSsyUsyUsyUsyUsyUdpOdpQdsjdsodpOaWbaWbaWbaWbaWbcsacsacsaaWbaWbaWbaWbcGddtIdtNducduKcGdduUaZLdvedvzdvBdwPcEfdwVdxacEgdywdyydyNdzbaUwdzidzNdCbdCHcAZdEodGsdGCcBadGEdHRdIqdIxcBadJNdLgcBidMldOFdQcdOFdQcdOFdStdUedUzdVldWpdWGdWMdXDdXIdZUeaJecyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaavJCaYydUKuYZsxaaYyaYyaYyaYyaYyedRedRanXefHegHavuaBeehEeiBeiIagnagoejDagpaBeemkayPayQemnayRagraySazTaguagwaCKayTayUaFtagzayXagAayVayWaFuaFuagCaFuaFuaFuaFusyUsyUsyUemvaBCazeazfendaBCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaenGenReqLerEetveupenGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGdeuBeuYevbevbewVexbcAYafpeCoeDxeEXcEfeFxeFWeGpeGFeHoeHwdzbcEleHGeHVeHXeIucAZcAZcAZcAZcBaeIXeIYeIZeJfcBaeKpeKscBicBieLeeLkeMveLeeNjeLeeNJeOJePpeQyeQzeQKeRKeROeQzeSFeTfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaamycaYyaYytDSahzqwKagXagYagZahaaTvaYyeUReWteYneYueYXfbPaBeehEeiBazMahcahdfceazOaBefeeaheaxSfehazTazUazVazTazWazXahgazYahhaFtaAaaCOahiaAcaAdaFuaAfaAgaAhaAiaAjaFuffZfgesyUfgNaBCaAnaAoaBCaBCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaenGfiafiwdsjfixfiGenGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGdcGdfjpfjyfjAcGdfldaWbcEfafpflBafpcEfcAPdzbflCfocflCfoFcAPfpAcvsfqlcvsfrTcCRftvfvafvacBacBafvHcBacBacBadJNfyafyDcBicBicBicBicBicBicBicBicXZfzRfAHfALfBzcXZfBJcXZfDffFGfGGfGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagxsKsbLsbLaJtaJtahTdckdlnaWHajOxcEaRCmrUaRvahBaeGaYyfHhfHQfIxfILfIXanXaBeaBeaBeaBeaBeaBeaBeaBeaBefJbahCazJfJlaBpfJXbgefKlaBmgLmaCKfMGaLIaCMaBraLPaBtaBuaBvfMShYqfPkahDahEahFaFufPEaBDaBAsFMaBCaBCaBCaBCaaaaaaaaaaaaaaaaaaaKgaKgbgqbgqbgqaKgaKgfQLfRLdsjfSYfTtasVasVenGenGenGasVasVaaaaaaaaaaaaaaaaaacGdcGdcGdcGdcGdfVucAYfVvfVAfWdfWjfYHfYNgbdgbsgbBgcdgcBgddgdVaCdgelgexgfQggigiQgiQgiQgjbgkhgkOgmIgotgpBgpGgqmgqpgsPgsPgtwguCgvFgsPgwpgyweTfgyAgyTgzNgAXgBngBsgCogCygCEgCEgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagwWXaagaaaaRwaizlteaJtaizahTycdesJxQFaiChNmrMJgDraPHahqahZgDUgGjgGEgIMaesanXgJrgLdgLwgLDaCxaiaaCygMagOjgOugPhgPGgQRgSRaCGaCHaAZaiLaJNaDVaCKaCLndiaCMaCNaCOaieaifaCPaFuaigaihaLQnJhaijaFuailgThsyUsFMvxjsyUaaaaaaaaawxwaaaaaabgqbgqaKgoVjgTMgUjgUkgUVgXBgZmjRedsjkVihayhbfhcAhddhdVhexhTAasVenGenGaaaaaawxwaaaaaaaaaaWbheBcDZhgncAYcCShgzhjAhkWhlbhlXhnyhnShpAhqBhruhtihruhulhvbhvGhruhxshruhxAhyfhzEhzXhBqhBthqBhtihxshDchulhruhEvhEUhHGhDchIhhJohJChJUhJXhKahKFhKVhLghLihLShMvhMBhMBhMRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagxsKsbLsbLaJtaJtahTdckdlnaWHajOxcEaRCmrUaRvahBaeGaYyfHhfHQfIxfILfIXanXaBeaBeaBeaBeaBeaBeaBeaBeaBefJbahCazJfJlaBpfJXbgefKlaBmgLmaCKfMGaLIaCMaBraLPaBtaBuaBvfMShYqfPkahDahEahFaFufPEaBDaBAsFMaBCaBCaBCaBCaaaaaaaaaaaaaaaaaaaKgaKgbgqbgqbgqaKgaKgfQLfRLdsjfSYfTtasVasVenGenGenGasVasVaaaaaaaaaaaaaaaaaacGdcGdcGdcGdcGdfVucAYfVvfVAfWdfWjfYHfYNgbdgbsgbBgcdgcBgddgdVaCdgelgexgfQggigiQgiQgiQgjbgkhgkOgmIgotgpBgpGgqmgqpgsPgsPgtwguCgvFrsfgwpgywcXZgyAgyTgzNgAXgBngBsgCogCygCEgCEgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagwWXaagaaaaRwaizlteaJtaizahTycdesJxQFaiChNmrMJgDraPHahqahZgDUgGjgGEgIMaesanXgJrgLdgLwgLDaCxaiaaCygMagOjgOugPhgPGgQRgSRaCGaCHaAZaiLaJNaDVaCKaCLndiaCMaCNaCOaieaifaCPaFuaigaihaLQnJhaijaFuailgThsyUsFMvxjsyUaaaaaaaaawxwaaaaaabgqbgqaKgoVjgTMgUjgUkgUVgXBgZmjRedsjkVihayhbfhcAhddhdVhexhTAasVenGenGaaaaaawxwaaaaaaaaaaWbheBcDZhgncAYcCShgzhjAhkWhlbhlXhnyhnShpAhqBhruhtihruhulhvbhvGhruhxshruhxAhyfhzEhzXhBqhBthqBhtihxshDchulhruhEvhEUhHGhDchIhhJoiFChJUhJXhKahKFhKVhLghLihLShMvhMBhMBhMRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaafaaaaaaaaaaaaaaaaaaaaaaDraizaizaJtaizahTycddZDiUUfDGgDrhNmhNmhNJaiFaiGaYyhNKfIxhOihOuhPQhQghQJaiIhRvhSpaDNhTshTxaiHaDPaDQhUhaiIaDSaDTbgeaAZaiLaJNaDVaJOaFmaiNaFtaFtavGaiQavGaFtaFuaFuaiTaEbnJhaEdaFuaiUaiVaSlsFMvxjsyUaaaaaaaaaaaaaaabgqbgqqpsajBajFhUMajFaimhUMfFOhVhjRedsjkVihVhkcuhWEhXAhYphWEhYphYGyeDenGenGaaaaaaaaaaaaaaaaWbhYMiahibtaGgaGgichichichichichichidMidPcDaiejiejiejiejiejiejiejiejiejiejiejiejifdifOigNiihiihiihiihiihiihiihiioiiQijcilyilQinieTfipyipNgzNiqfiqTirxgCoirOisqitjgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaRwaizaizaJtaJtahTdckfZNiUUfDGjnXitKcPvajTajUajVaYyiuXivxivHixjavuixUiyaiznaTKaLyizSaLyaLyaFaaLyaTKaQeaFeaIlaFgaFhaFiaQeaIpaFlajXaFmaFnaOQiAwaNsaFrajYaFsiADaFuajZaFvnJhakaaFuaFwaFxaSlsFMaKfsyUaaaaaaaaaaaabgqbgqaHesvXayLaFGiCsiCyiCysvXiCXbUdiEHdsjiESiEriEXiFyiGfiGfiImiJxarKiFyiJTenGenGaaaaaaaaaaaaaWbiKaaWbaWbaGgiKniKAiLbiMciNsiOIiPqiQeiSqcEuiVxiVFiVPiXYiYsiYDiYZjaHjaXjdCjewjeIifdjfTjfWjgqjgyiihjgHjhWjiHiihjiLjiSijcijcjjLjjVjlKjmujmxjmUjnlcXZfGWcXZcXZcXZcXZfBJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaYyxkVggApuLjnXahtjpFjqdakLjqwaYyjrEjrSivHjsGavujvljwxaTKaTKaGCakMaGDjwTjyCaGFjzfaQeaGIaGJakNaGKakOaGLaGMaGNaGOaOPaGQaGRaGSaGTaGUakPaGVjzVtkHtkHaGXtkHtkHtkHtkHsyUsyUsFMaHbsyUaaaaaaaaabgqbgqaHeckyamEamEjAhjARjAYjDijDijDsjEcjEmjEnjHajHnjHHjHOjIMjIMjJfjJijKujKuiFyiJTenGenGaaaaaaaaaaWbjLajMajMOaGgjMYjPijRrjRWjSijUwjUxjXajXgjXUjYjjZykaMkdqkdqkdqkdLkeQkfJkfYkgikhrifdkhWkjbklKkmjknEknEknEknEiihkotkowkoFijckpxkqpcXZkrHkrZksekttkuxkvqkwykzzeTfaaaaaawxwaaaaaaaaacuRaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/maps/southern_cross/southern_cross-3.dmm b/maps/southern_cross/southern_cross-3.dmm index b93f4ae77c..1612922df9 100644 --- a/maps/southern_cross/southern_cross-3.dmm +++ b/maps/southern_cross/southern_cross-3.dmm @@ -17,6 +17,7 @@ "aav" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/ai) "aaM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "abm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/table/standard,/obj/random/contraband,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_11) +"abq" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/effect/floor_decal/corner/beige/diagonal,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/head/santa/green,/obj/item/clothing/head/santa/green,/obj/item/clothing/under/christmas/green,/obj/item/clothing/under/christmas/green,/obj/item/clothing/under/christmas/croptop/green,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "abK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/ai) "abV" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techfloor,/area/ai) "abX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai) @@ -41,6 +42,7 @@ "aiP" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/greengrid,/area/ai) "ajC" = (/obj/structure/cable/cyan,/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/simulated/floor/plating,/area/ai) "ajO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; 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,/area/crew_quarters/seconddeck/gym) +"akk" = (/obj/machinery/particle_accelerator/control_box{anchored = 1; construction_state = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "akz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/sleep/vistor_room_6) "akK" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/greengrid,/area/ai) "alA" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai) @@ -133,6 +135,7 @@ "bgB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_12) "bgE" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/solar_control{auto_start = 2; id = "foreportsolar"; name = "Fore Port Solar Control"},/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bhy" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Solar Fore Port"},/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) +"bhP" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/light/floortube{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "bim" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "biM" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bjg" = (/turf/simulated/wall,/area/maintenance/solars/foreportsolar) @@ -150,6 +153,7 @@ "bng" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai) "bnv" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/techfloor,/area/ai) "bop" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) +"boE" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "bqB" = (/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "bqJ" = (/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "bqS" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) @@ -165,6 +169,7 @@ "bzs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "bzQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_3) "bAf" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) +"bAH" = (/obj/structure/closet/emcloset{anchored = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "bBg" = (/turf/simulated/wall,/area/crew_quarters/thirddeck/vrroom) "bCU" = (/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/solar/forestarboardsolar) "bDN" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_9) @@ -185,6 +190,7 @@ "bLc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bLU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_9) "bMP" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) +"bNG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "bOl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bOE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Fore Port Solar Access"; req_access = list(); req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bOR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) @@ -217,6 +223,7 @@ "cfs" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/meter,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; layer = 3.3; master_tag = "fore_starboard_solar_airlock"; name = "interior access button"; pixel_x = 25; pixel_y = 25; req_access = list(); req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cfy" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "fore_starboard_solar_inner"; locked = 1; name = "Engineering External Access"; req_access = list(11,13)},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cgc" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "fore_starboard_solar_pump"},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) +"cgg" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "cgt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "chp" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "fore_starboard_solar_airlock"; layer = 3.3; pixel_y = -25; req_access = list(13); tag_airpump = "fore_starboard_solar_pump"; tag_chamber_sensor = "fore_starboard_solar_sensor"; tag_exterior_door = "fore_starboard_solar_outer"; tag_interior_door = "fore_starboard_solar_inner"},/obj/machinery/airlock_sensor{id_tag = "fore_starboard_solar_sensor"; layer = 3.3; pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "fore_starboard_solar_pump"},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "chr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "fore_starboard_solar_outer"; locked = 1; name = "Engineering External Access"; req_access = list(11,13)},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) @@ -256,6 +263,7 @@ "czh" = (/obj/item/stack/cable_coil/yellow,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "cAd" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/structure/sign/warning/airlock{pixel_y = -32},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cBt" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) +"cBS" = (/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/structure/closet/radiation{anchored = 1; starts_with = list(/obj/item/clothing/suit/radiation = 4, /obj/item/clothing/head/radiation = 4, /obj/item/device/geiger = 4)},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "cCe" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cCt" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cDl" = (/obj/structure/sign/securearea{icon_state = "restroom"},/turf/simulated/wall,/area/crew_quarters/toilet) @@ -319,6 +327,7 @@ "ddu" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai/ai_upload) "def" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/bluegrid,/area/ai/ai_upload) "det" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) +"deR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "dfh" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dfC" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/random/junk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "dgt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/foreportsolar) @@ -393,6 +402,7 @@ "dRt" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/highsecurity{name = "Synthetic Storage Access"; req_access = list(16); req_one_access = list(16)},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_cyborg_station) "dRN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_cyborg_station) "dSr" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"dSM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "dSN" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_cyborg_station) "dSP" = (/obj/effect/floor_decal/carpet,/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 10},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "dSS" = (/obj/effect/effect/snow,/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/structure/event/present,/turf/simulated/floor/outdoors/snow{outdoors = 0},/area/crew_quarters/cafeteria) @@ -437,6 +447,7 @@ "eeV" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/cmo/quarters) "efi" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor/quarters) "ega" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor/quarters) +"egb" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "ehd" = (/obj/random/junk,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) "ehe" = (/obj/machinery/button/remote/airlock{id = "Dorms11"; name = "Bolt Control"; pixel_x = -30; specialfunctions = 4},/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_11) "ehj" = (/obj/random/action_figure,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) @@ -444,6 +455,7 @@ "eiK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/meter,/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "ejh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "ekj" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) +"ekp" = (/obj/machinery/door/blast/regular{id = "palabvent"; name = "PA Lab Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "ekP" = (/obj/machinery/computer/security/telescreen/entertainment{layer = 4; pixel_y = -32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_2) "ele" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) "elx" = (/obj/structure/closet/secure_closet/hop2,/obj/machinery/keycard_auth{pixel_x = -26},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop/quarters) @@ -493,6 +505,7 @@ "ezD" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/central) "ezK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "eAr" = (/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"eAz" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "eBi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "eBy" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36; pixel_y = -6},/obj/machinery/button/windowtint{id = "cmoquarters"; pixel_x = -36; pixel_y = 6},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/cmo/quarters) "eCs" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/cmo/quarters) @@ -551,6 +564,7 @@ "fam" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "hopquarters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hop/quarters) "fau" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{id_tag = "hopquarters"; name = "Head of Personnel Quarters"; req_access = list(57)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/hop/quarters) "faF" = (/turf/simulated/wall,/area/crew_quarters/heads/sc/hop/quarters) +"faI" = (/obj/machinery/light,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "faZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Command Substation"; req_one_access = list(11,19,24)},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/substation/command) "fbj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "fbn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall,/area/maintenance/substation/command) @@ -599,6 +613,7 @@ "fnn" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "foz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "fpl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) +"fqD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "frh" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Port Hallway 1"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "frz" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "frG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) @@ -617,6 +632,7 @@ "fxz" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/starboard) "fyg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fyw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) +"fyI" = (/obj/item/stack/rods,/obj/structure/lattice,/obj/structure/grille/broken,/turf/space,/area/space) "fzr" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fzQ" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/event/present,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fzX" = (/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -625,6 +641,7 @@ "fAM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fBA" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fBR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) +"fCi" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/light/floortube{dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Particle Accelerator 3"; dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "fCn" = (/obj/machinery/alarm{dir = 1; frequency = 1441; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_3) "fCW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fCX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) @@ -674,9 +691,11 @@ "fUa" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fUE" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fUH" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) +"fUI" = (/turf/simulated/wall/r_lead,/area/rnd/research/particleaccelerator) "fUM" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/central) "fUN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "fVO" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) +"fVU" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_lead,/area/rnd/research/particleaccelerator) "fWg" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fWz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fWL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) @@ -787,6 +806,7 @@ "hcC" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "bsquarters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/bs) "hcP" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/bs) "hdM" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) +"heB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "hfi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "hfm" = (/turf/simulated/wall,/area/hallway/primary/thirddeck/starboard) "hfA" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/wall,/area/shuttle/escape_pod8/station) @@ -802,6 +822,7 @@ "hkY" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_7_berth_hatch"; locked = 1; name = "Escape Pod 7"; req_access = list(13)},/turf/simulated/floor,/area/hallway/primary/thirddeck/port) "hln" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "escape_pod_7_berth"; pixel_x = -25; pixel_y = 30; tag_door = "escape_pod_7_berth_hatch"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "hlx" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) +"hlI" = (/obj/structure/fans/hardlight/colorable{desc = "Retains air, blocks radiation, allows passage."; light_color = "#243550"; name = "hardlight radiation shield"; rad_resistance = 200},/obj/machinery/door/window/brigdoor/northright{name = "Particle Focus door"; req_access = list(7)},/obj/machinery/button/remote/blast_door{dir = 8; id = "palabvent"; name = "Emergency Vent Control"; pixel_x = 25; req_access = list(7)},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "hlY" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) "hmi" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) "hml" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) @@ -892,6 +913,7 @@ "ihn" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "ihC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iiZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) +"ijq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "ijw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iki" = (/obj/structure/table/rack,/obj/item/device/tvcamera,/obj/item/device/tvcamera,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "ikQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/vending/snack{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) @@ -899,6 +921,7 @@ "ios" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "ipu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "irZ" = (/obj/structure/sign/directions/gym,/turf/simulated/wall,/area/crew_quarters/seconddeck/gym) +"isJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "itj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iuZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "ivn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) @@ -917,6 +940,7 @@ "iBn" = (/obj/structure/closet/lawcloset,/obj/machinery/keycard_auth{desc = "This device is used to trigger station functions, which require more than one ID card to authenticate. This one has a small note taped to it. The note reads: I know the secrearies don't have access to these by default, but I am putting it here anyway, on the off chance that one is given the proper clearance and needs to use it. Better safe than sorry. - CE Sivaad Veiter"; name = "Oddly Placed Keycard Authentication Device"; pixel_x = 26},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/bs) "iBE" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/orange/diagonal,/obj/effect/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "iCa" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) +"iCR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "iDw" = (/turf/simulated/wall,/area/maintenance/thirddeck/aftstarboard) "iDQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "iEb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "d3_port_dorms_airlock"; name = "interior access button"; pixel_x = -25; pixel_y = 26; req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) @@ -931,6 +955,7 @@ "iIX" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "iJc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iJD" = (/obj/machinery/light{dir = 8},/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_9) +"iJW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "iKs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iKC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/station_map{dir = 1; pixel_y = -32},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iKR" = (/obj/structure/table/standard,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/random/action_figure,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_8) @@ -985,6 +1010,7 @@ "jiY" = (/obj/item/clothing/suit/cultrobes/alt{armor = list("melee"=5,"bullet"=5,"laser"=5,"energy"=10,"bomb"=25,"bio"=10,"rad"=0)},/turf/simulated/floor/wood/sif/broken,/area/maintenance/thirddeck/aftstarboard) "jjg" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/maintenance/thirddeck/aftport) "jjl" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"jjx" = (/obj/machinery/power/thermoregulator/southerncross{pixel_y = 30},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/emitter{anchored = 1; state = 2},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "jjB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_3) "jjF" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/maintenance/thirddeck/aftport) "jjK" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) @@ -1000,6 +1026,7 @@ "jpj" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "jqa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "jqd" = (/obj/machinery/vending/snack{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) +"jqk" = (/obj/machinery/light{dir = 8},/turf/simulated/open,/area/rnd/research/particleaccelerator) "jqO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) "jra" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) "jtv" = (/obj/structure/table/wooden_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/storage/box/matches,/obj/item/clothing/mask/smokable/cigarette/cigar,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/random_multi/single_item/captains_spare_id,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) @@ -1008,6 +1035,7 @@ "jub" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) "jul" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) "jun" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Bathroom"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/sd) +"jux" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "jvv" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "jvU" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/effect/shuttle_landmark/southern_cross/escape_pod7/station,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod7/station) "jwk" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/yellowdouble,/turf/simulated/floor/carpet/blue,/area/crew_quarters/sleep/vistor_room_3) @@ -1026,6 +1054,7 @@ "jGu" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/wood/sif,/area/maintenance/thirddeck/aftstarboard) "jGz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "jGG" = (/obj/structure/bed/chair/oldsofa/right{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) +"jHg" = (/obj/item/device/geiger/wall/south,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "jHs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "jHD" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) "jHY" = (/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/item/weapon/handcuffs/legcuffs/fuzzy,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) @@ -1107,6 +1136,7 @@ "kvb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "kvs" = (/turf/simulated/floor/wood/broken,/area/maintenance/thirddeck/dormsatmos) "kwc" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) +"kwm" = (/obj/machinery/particle_smasher,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "kxk" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Stairwell"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "kxK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "kzd" = (/obj/structure/flora/pottedplant/xmas{pixel_y = 11},/turf/simulated/floor/wood,/area/bridge/meeting_room) @@ -1116,6 +1146,7 @@ "kAA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/bridge) "kAB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/bridge) "kAS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{name = "Station Director's Quarters"; req_access = list(20)},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) +"kBp" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/binary/passive_gate{name = "PA Chamber pressure regulator"},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "kCd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "kDx" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) "kEc" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/obj/random/trash,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) @@ -1124,7 +1155,7 @@ "kFY" = (/obj/machinery/chemical_dispenser/bar_alc{dir = 4; pixel_x = -5},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "kGh" = (/obj/structure/windoor_assembly,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "kGY" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/substation/dorms) -"kHk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/gym) +"kHk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/gym) "kHP" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "kHW" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Command Secretary"},/turf/simulated/floor/wood,/area/bridge/meeting_room) "kII" = (/obj/structure/table/marble,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) @@ -1142,6 +1173,7 @@ "kPn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "kQk" = (/obj/machinery/fitness/punching_bag/clown,/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) "kQo" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"kQJ" = (/obj/structure/particle_accelerator/particle_emitter/center{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "kRw" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/bridge/meeting_room) "kSx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "kTm" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access = list(16); req_one_access = list(16)},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_upload_foyer) @@ -1149,6 +1181,7 @@ "kTz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced/polarized{id = "bridge_center"},/turf/simulated/floor/plating,/area/bridge) "kTF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) "kTK" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) +"kTO" = (/obj/structure/particle_accelerator/fuel_chamber{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "kUR" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "bridge_center"},/turf/simulated/floor/plating,/area/bridge) "kVg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced/polarized{id = "bridge_center"},/turf/simulated/floor/plating,/area/bridge) "kWg" = (/obj/item/weapon/pack/cardemon,/obj/structure/table,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) @@ -1206,6 +1239,7 @@ "lAw" = (/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_9) "lAx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "lBH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/bridge) +"lBL" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "lCg" = (/obj/structure/filingcabinet,/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "lCh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "lCG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) @@ -1230,6 +1264,7 @@ "lOq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "lOz" = (/obj/structure/loot_pile/mecha/hoverpod,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "lOB" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) +"lPC" = (/obj/structure/particle_accelerator/end_cap{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "lPN" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = list(19)},/turf/simulated/floor/wood,/area/bridge/meeting_room) "lQt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge) "lRi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/bridge) @@ -1241,6 +1276,7 @@ "lTV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge) "lTW" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/clothing/mask/gas,/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/suit/space/void/captain,/obj/item/clothing/head/helmet/space/void/captain,/obj/machinery/door/window/holowindoor{dir = 1; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "lUe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/southleft{name = "Director's Desk Door"; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) +"lUl" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "lUt" = (/obj/machinery/bookbinder,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "lUD" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "lUS" = (/obj/structure/table/wooden_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/device/megaphone,/obj/item/weapon/pen/multi,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) @@ -1255,6 +1291,7 @@ "lZF" = (/obj/effect/effect/snow,/obj/structure/flora/tree/pine/xmas/presents,/turf/simulated/floor/outdoors/snow{outdoors = 0},/area/crew_quarters/cafeteria) "lZW" = (/obj/item/stack/material/marble{amount = 25},/turf/simulated/floor/tiled,/area/maintenance/thirddeck/aftport) "maG" = (/obj/structure/table/standard,/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_11) +"maM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "mbQ" = (/obj/structure/sign/directions/gym{dir = 1},/turf/simulated/wall,/area/crew_quarters/toilet) "mcQ" = (/obj/effect/decal/remains/human,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "mdc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) @@ -1271,6 +1308,7 @@ "mhi" = (/obj/item/weapon/implant/dud,/obj/structure/table/steel,/obj/item/weapon/implant/sizecontrol,/obj/item/weapon/implant/dud,/obj/item/clothing/under/rank/geneticist,/obj/item/weapon/handcuffs/cable/white,/obj/item/clothing/suit/storage/toggle/labcoat,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "mhn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge) "mhC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge) +"mhK" = (/obj/structure/particle_accelerator/particle_emitter/left{anchored = 1; construction_state = 1; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "miC" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "miE" = (/obj/structure/table/steel,/obj/item/weapon/folder/blue,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "miH" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/device/flashlight,/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/item/device/radio{pixel_x = -5; pixel_y = -5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/bridge) @@ -1317,6 +1355,7 @@ "mDE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "mEk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_one_access = list(19)},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) "mEG" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"mEY" = (/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "mFG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) "mFN" = (/obj/machinery/vending/loadout/clothing,/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "mFO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/bridge/meeting_room) @@ -1328,6 +1367,7 @@ "mKs" = (/turf/simulated/floor/tiled,/area/bridge) "mKx" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) "mKL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge) +"mKT" = (/obj/structure/particle_accelerator/particle_emitter/right{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "mLT" = (/obj/item/toy/sif{pixel_y = 10},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/bridge) "mMR" = (/obj/item/toy/figure/station{pixel_y = 10},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/bridge) "mMV" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/bridge) @@ -1376,6 +1416,7 @@ "niM" = (/obj/structure/table/woodentable,/obj/item/device/tape/random,/obj/item/device/taperecorder,/obj/item/toy/xmastree,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) "njj" = (/obj/structure/table/woodentable,/obj/machinery/recharger,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -26},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "njv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) +"njz" = (/obj/machinery/door/window/brigdoor/southright{name = "Particle Focus door"; req_access = list(7)},/obj/structure/fans/hardlight/colorable{desc = "Retains air, blocks radiation, allows passage."; light_color = "#243550"; name = "hardlight radiation shield"; rad_resistance = 200},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "njY" = (/turf/simulated/wall/r_wall,/area/maintenance/solars/aftstarboardsolar) "nkg" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) "nkF" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Solar - Aft Port"; input_attempt = 1; input_level = 150000; output_level = 100000},/turf/simulated/floor/plating,/area/maintenance/solars/aftportsolar) @@ -1421,6 +1462,7 @@ "nGx" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/power/terminal{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) "nHA" = (/obj/structure/bed/chair/wood,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "nIu" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/structure/sign/warning/airlock{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) +"nJi" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/light/floortube{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "nKZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) "nLH" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/item/toy/plushie/teshari/strix,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) "nLS" = (/obj/machinery/vending/foodfast{desc = "Not sure how they're united but man is this grilled food delicious! Though it seems to just be a lot of unhealthy fast food..."},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) @@ -1458,7 +1500,9 @@ "oaL" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/sd) "obC" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) "obF" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aftdoorm) +"obU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "ocl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) +"ocq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "odB" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) "odE" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "oeX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) @@ -1495,6 +1539,7 @@ "osR" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "ouE" = (/obj/structure/sign/warning/high_voltage{pixel_y = 32},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "ouV" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) +"ouY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "owk" = (/obj/random/trash,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "owK" = (/obj/structure/salvageable/console_os,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "owX" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) @@ -1554,6 +1599,7 @@ "oYU" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "oZi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aftstarboardcentral) "oZK" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/cosmos,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) +"pac" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "pbl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftstarboardcentral) "pbI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftstarboardcentral) "pcr" = (/obj/machinery/door/airlock{id_tag = "Dorms6"; name = "Room 6"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/sleep/vistor_room_6) @@ -1570,6 +1616,7 @@ "pkH" = (/obj/structure/sign/directions/eva{dir = 1; pixel_y = -3},/obj/structure/sign/directions/command{dir = 1; pixel_y = 3},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "pkQ" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/maintenance/thirddeck/dormsatmos) "pld" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/stationgateway) +"pmm" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "pmn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/stationgateway) "pmD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/stationgateway) "pmN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/stationgateway) @@ -1611,6 +1658,7 @@ "pES" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Station Gateway"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/stationgateway) "pFO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/sleep/vistor_room_1) "pGp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/stationgateway) +"pGt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/item/device/geiger/wall/west,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "pGF" = (/obj/structure/salvageable/server_os,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "pGV" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/flora/pottedplant/drooping{pixel_x = 1; pixel_y = 10},/obj/structure/table/bench/wooden,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/stationgateway) "pGW" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/stationgateway) @@ -1653,19 +1701,22 @@ "qcT" = (/obj/structure/catwalk,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "qdj" = (/obj/structure/bed/chair/bay/chair/padded/red/smallnest,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "qdZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"qeo" = (/obj/machinery/light,/obj/structure/closet/hydrant{pixel_x = -32},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "qew" = (/obj/effect/floor_decal/corner_techfloor_gray{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "qff" = (/obj/machinery/computer/arcade,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Port Civ Bar 2"},/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "qfg" = (/obj/machinery/button/remote/blast_door{id = "heads_meeting"; name = "Security Shutters"; pixel_x = -26},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"qhW" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22; req_one_access = list(24,11,7)},/obj/machinery/recharger,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "qik" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "qja" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/gym) "qjx" = (/obj/machinery/computer/arcade,/obj/effect/floor_decal/carpet{dir = 4},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 5},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "qjy" = (/obj/structure/sign/directions/ladder_down{name = "\improper Down One Deck"; pixel_y = -6},/obj/structure/sign/directions/eva,/obj/structure/sign/directions/security{pixel_y = 6},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) -"qjG" = (/obj/machinery/computer/arcade,/obj/effect/floor_decal/carpet{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) +"qjG" = (/obj/machinery/computer/arcade,/obj/effect/floor_decal/carpet{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 9},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "qjP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "qkf" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Civ Hallway 1"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/aft) "qkA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "qld" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "qlf" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar{id = "forestarboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/forestarboardsolar) +"qlN" = (/obj/machinery/shield_diffuser,/obj/machinery/door/blast/regular{id = "palabvent"; name = "PA Lab Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "qmc" = (/obj/structure/table/woodentable,/obj/item/device/starcaster_news,/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/gym) "qmA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "qmU" = (/obj/machinery/button/remote/airlock{id = "Dorms5"; name = "Bolt Control"; pixel_y = -30; specialfunctions = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_5) @@ -1680,6 +1731,7 @@ "qrB" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) "qtx" = (/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 28},/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) "qtS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d3_starboard_dorms_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"quu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "quN" = (/turf/simulated/wall,/area/maintenance/substation/dorms) "qvB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "qwl" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -1718,7 +1770,7 @@ "qMf" = (/obj/machinery/door/airlock{id_tag = "Dorms8"; name = "Room 8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/sleep/vistor_room_8) "qMu" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "qNG" = (/obj/structure/windoor_assembly{dir = 4},/obj/item/tape/engineering,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) -"qQg" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner_steel_grid/full,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"qQg" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner_steel_grid/full,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/suit/storage/hooded/wintercoat/christmasred,/obj/item/clothing/suit/storage/hooded/wintercoat/christmasred,/obj/item/clothing/shoes/boots/winter/christmasred,/obj/item/clothing/shoes/boots/winter/christmasred,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "qQv" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "qQC" = (/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Gym"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/gym) "qRa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -1741,6 +1793,7 @@ "rbj" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/hallway/primary/thirddeck/aft) "rbp" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/solars/aftportsolar) "rbz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"rbB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rbF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/vending/fitness{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "rcR" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aftdoorm) "rcT" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftstarboardcentral) @@ -1757,12 +1810,13 @@ "rhH" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "rhR" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/hallway/primary/thirddeck/central) "riY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"rjA" = (/obj/structure/table/reinforced,/obj/machinery/light/floortube{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/item/bodybag/cryobag{pixel_x = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/hypospray/autoinjector/rad{pixel_y = -3},/obj/item/weapon/reagent_containers/hypospray/autoinjector/rad{pixel_y = 3},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rjS" = (/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "rlC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "rmf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_5) "rmj" = (/turf/simulated/wall,/area/maintenance/thirddeck/dormsatmos) "rmQ" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/alt/parquet,/area/crew_quarters/thirddeck/vrroom) -"rng" = (/obj/machinery/vr_sleeper{icon_state = "body_scanner_0"},/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) +"rng" = (/obj/machinery/vr_sleeper,/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) "rnG" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 4; layer = 3},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "rnN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/windowtint{id = "vrroom"; pixel_x = 26; pixel_y = 11},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/light_switch{dir = 8; name = "light switch "; pixel_x = 26; pixel_y = -11},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "roG" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/corner_techfloor_gray{dir = 5},/obj/structure/table/hardwoodtable,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen{pixel_y = -3},/obj/item/weapon/pen,/obj/item/weapon/tape_roll{pixel_x = -9; pixel_y = 14},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) @@ -1770,6 +1824,7 @@ "rpp" = (/obj/random/junk,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) "rpL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "rpR" = (/obj/item/device/flashlight/lamp,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) +"rqh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rqw" = (/turf/simulated/wall{can_open = 1; desc = "A huge chunk of metal used to seperate rooms. There are scratch marks along the floor."},/area/maintenance/thirddeck/dormsstarboard) "rqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "rqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) @@ -1786,7 +1841,7 @@ "ryK" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/boxing{name = "yoga mat"},/area/crew_quarters/seconddeck/gym) "rzo" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/wall/r_wall,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "rzY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) -"rCL" = (/obj/structure/cryofeed{dir = 4; pixel_x = -31; pixel_y = 0},/obj/machinery/vr_sleeper{icon_state = "body_scanner_0"},/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) +"rCL" = (/obj/structure/cryofeed{dir = 4; pixel_x = -31},/obj/machinery/vr_sleeper,/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) "rDw" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/aftportsolar) "rEL" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/boxing{name = "yoga mat"},/area/crew_quarters/seconddeck/gym) "rGf" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) @@ -1801,7 +1856,7 @@ "rLC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; 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,/area/crew_quarters/seconddeck/gym) "rMh" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 8},/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/gym) "rMA" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) -"rNC" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/effect/floor_decal/corner/beige/diagonal,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) +"rNC" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/effect/floor_decal/corner/beige/diagonal,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/head/santa,/obj/item/clothing/head/santa,/obj/item/clothing/under/christmas/red,/obj/item/clothing/under/christmas/red,/obj/item/clothing/under/christmas/croptop/red,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "rNN" = (/obj/structure/bed/chair/bay/chair/padded/red/smallnest,/turf/simulated/floor/wood,/area/maintenance/thirddeck/dormsatmos) "rOA" = (/obj/structure/catwalk,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "rQi" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) @@ -1817,6 +1872,7 @@ "rUF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/aft) "rUK" = (/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) "rVl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"rVm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rVR" = (/obj/structure/table/bench/wooden,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/sleep/vistor_room_2) "rWM" = (/turf/simulated/wall/r_wall,/area/crew_quarters/thirddeck/vrroom) "rXX" = (/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube,/obj/random/trash,/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) @@ -1852,6 +1908,7 @@ "smo" = (/obj/structure/catwalk,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "smy" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/vending/cola{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "smF" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) +"smS" = (/obj/structure/cable/green{d1 = 32; d2 = 4; icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/door/window/brigdoor/eastright{name = "Particle Accelerator door"; req_access = list(7)},/obj/structure/disposalpipe/down{dir = 4},/turf/simulated/open,/area/rnd/research/particleaccelerator) "soZ" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "spk" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/gym) "spz" = (/obj/structure/railing{dir = 1},/obj/machinery/light{dir = 1; layer = 3},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/open,/area/crew_quarters/seconddeck/gym) @@ -1916,11 +1973,11 @@ "sTq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) "sTu" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) "sUf" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) -"sUk" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - VR Lobby"; dir = 1},/obj/machinery/vr_sleeper{icon_state = "body_scanner_0"},/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) +"sUk" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - VR Lobby"; dir = 1},/obj/machinery/vr_sleeper,/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) "sUG" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood/alt/parquet,/area/crew_quarters/thirddeck/vrroom) "sUX" = (/obj/effect/floor_decal/corner_techfloor_gray{dir = 10},/obj/effect/floor_decal/corner_techfloor_gray{dir = 9},/obj/structure/table/hardwoodtable,/obj/item/device/paicard/typeb,/obj/item/toy/xmastree,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "sVv" = (/obj/item/toy/figure/geneticist,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) -"sVK" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/corner_techfloor_gray{dir = 10},/obj/structure/table/rack/shelf,/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 0},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 0},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) +"sVK" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/corner_techfloor_gray{dir = 10},/obj/structure/table/rack/shelf,/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "sVR" = (/obj/effect/effect/snow,/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/outdoors/snow{outdoors = 0},/area/crew_quarters/cafeteria) "sVX" = (/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = 36; pixel_y = -6},/obj/effect/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "sWb" = (/obj/random/tech_supply,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) @@ -1967,6 +2024,7 @@ "tnz" = (/turf/simulated/wall,/area/medical/first_aid_station/thirddeck) "tnF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "tpf" = (/turf/simulated/wall,/area/crew_quarters/toilet) +"tpU" = (/obj/structure/table/reinforced,/obj/machinery/camera/network/research{c_tag = "SCI - Particle Accelerator 1"},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/stack/cable_coil/random,/obj/item/device/multitool,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "tqh" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/substation/dorms) "tsf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "ttw" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) @@ -1981,6 +2039,7 @@ "txq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) "tyt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aft) "tzt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"tzP" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/rnd/research/particleaccelerator) "tAb" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/hallway/primary/thirddeck/aft) "tAX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "tBw" = (/turf/simulated/wall/r_wall,/area/crew_quarters/toilet) @@ -1989,6 +2048,7 @@ "tCS" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/bed/roller,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "tDd" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "tDp" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) +"tDY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "tEm" = (/obj/structure/table/rack/shelf/steel,/obj/random/tool,/obj/random/tool,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/technology_scanner,/turf/simulated/floor/tiled/techmaint,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "tEC" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/closet/secure_closet/medical_wall{name = "defibrillator closet"; pixel_y = 31},/obj/item/device/defib_kit/loaded,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "tFI" = (/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) @@ -2045,7 +2105,7 @@ "ucA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "ucG" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "udk" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d3_starboard_dorms_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) -"udn" = (/obj/machinery/disposal/wall{dir = 4; pixel_x = -37; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) +"udn" = (/obj/machinery/disposal/wall{dir = 4; pixel_x = -37},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "udT" = (/obj/machinery/newscaster{pixel_y = 30},/turf/simulated/floor/wood,/area/bridge/meeting_room) "uee" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "uen" = (/obj/machinery/door/firedoor/border_only,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) @@ -2082,6 +2142,7 @@ "usq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "uss" = (/obj/random/junk,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_9) "utQ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/light{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"uul" = (/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "uuq" = (/obj/structure/railing{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/open,/area/hallway/primary/thirddeck/aft) "uwA" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/corner/blue/bordercorner,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "uxE" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) @@ -2146,14 +2207,15 @@ "uZX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "vae" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vag" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) +"vao" = (/obj/machinery/camera/network/research{c_tag = "SCI - Particle Accelerator 2"; dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "vaD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vbb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vbK" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vcl" = (/turf/simulated/wall/r_wall,/area/hallway/primary/thirddeck/aftportcentral) "vdi" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vdm" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/closet/lasertag/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) -"veo" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) -"vez" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Civ Dorms 6"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/event/present,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"veo" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/suit/storage/hooded/wintercoat/christmasgreen,/obj/item/clothing/suit/storage/hooded/wintercoat/christmasgreen,/obj/item/clothing/shoes/boots/winter/christmasgreen,/obj/item/clothing/shoes/boots/winter/christmasgreen,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"vez" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Civ Dorms 6"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/accessory/scarf/christmas,/obj/item/clothing/accessory/scarf/christmas,/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/holidaypriest,/obj/item/clothing/suit/holidaypriest,/obj/item/clothing/suit/space/santa,/obj/item/clothing/suit/space/santa,/obj/item/clothing/head/helmet/space/santahat,/obj/item/clothing/head/helmet/space/santahat,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "vfw" = (/obj/machinery/lapvend,/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "vfQ" = (/obj/machinery/gear_painter{dir = 1},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "vhe" = (/obj/structure/catwalk,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2250,6 +2312,7 @@ "vYr" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "vYC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; layer = 3.3; master_tag = "aft_port_solar_airlock"; name = "interior access button"; pixel_x = -25; pixel_y = 25; req_access = list(); req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/solars/aftportsolar) "vZb" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/airless,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) +"vZm" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wai" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wap" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "d3_port_dorms_pump"},/obj/machinery/airlock_sensor{id_tag = "d3_port_dorms_sensor"; pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "wbl" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d3_port_dorms_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) @@ -2296,6 +2359,7 @@ "wuJ" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) "wvf" = (/obj/structure/sign/directions/eva,/obj/structure/sign/directions/engineering{pixel_y = 6},/obj/structure/sign/directions/ladder_down{name = "\improper Down One Deck"; pixel_y = -6},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "wvs" = (/obj/random/junk,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/sleep/vistor_room_5) +"wvJ" = (/turf/simulated/wall/r_wall,/area/rnd/research/particleaccelerator) "wvZ" = (/obj/structure/table/standard,/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/random/coin,/obj/random/snack,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) "wwo" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "wwM" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/random/maintenance/engineering,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) @@ -2305,6 +2369,7 @@ "wyH" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) "wzy" = (/turf/simulated/wall,/area/crew_quarters/cafeteria) "wzA" = (/turf/simulated/wall/r_wall,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"wzX" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wAH" = (/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/sleep/vistor_room_10) "wAN" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/machinery/light{dir = 8},/obj/structure/sign/securearea{desc = "VR-Room under construction, not all of it's features have been implemented yet."; icon_state = "atmos_waste"; name = "A warning sign which reads 'UNDER CONSTRUCTION'."; pixel_x = -32},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "wAW" = (/obj/structure/table/bench/wooden,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/sblucarpet,/area/crew_quarters/sleep/vistor_room_8) @@ -2320,6 +2385,7 @@ "wFm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/sleep/vistor_room_4) "wFq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_4) "wGk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/bench/standard,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) +"wGL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wGX" = (/obj/structure/table/woodentable,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/sleep/vistor_room_4) "wHk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/sleep/vistor_room_1) "wHS" = (/obj/random/junk,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/sleep/vistor_room_7) @@ -2350,6 +2416,7 @@ "wRm" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1; pixel_y = -35},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wRo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "wSi" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_6) +"wSp" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wSC" = (/obj/structure/table/standard,/obj/machinery/computer/security/telescreen/entertainment{layer = 4; pixel_y = -32},/obj/item/clothing/head/pelt/black,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wSI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wSU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) @@ -2398,7 +2465,7 @@ "xnt" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/implanter,/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "xob" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_7) "xon" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) -"xoK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 35; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) +"xoK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 35},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "xpa" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Office"},/turf/simulated/floor/plating,/area/maintenance/substation/dorms) "xpl" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_10) "xpu" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2437,6 +2504,7 @@ "xDN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/event/present,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "xEs" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_11) "xEB" = (/obj/structure/railing,/obj/effect/floor_decal/spline/plain,/turf/simulated/open,/area/crew_quarters/cafeteria) +"xFd" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "xFT" = (/obj/structure/curtain/open/shower,/obj/structure/window/basic,/obj/machinery/shower{pixel_y = 16},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_11) "xGf" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/vistor_room_11) "xGh" = (/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2498,6 +2566,7 @@ "ybj" = (/turf/simulated/wall,/area/crew_quarters/sleep/vistor_room_11) "ybA" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/dorms) "ybV" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) +"ycm" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "ycN" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_11) "ydi" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/woodentable,/obj/item/weapon/paper{desc = ""; info = "Pain sustained in Virtual Reality will be sustained in the real world."; name = "VR Pod Disclaimer"},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "ydk" = (/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2523,6 +2592,7 @@ "ykB" = (/obj/item/weapon/packageWrap,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) "ykL" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "ykM" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_5) +"ylp" = (/obj/structure/particle_accelerator/power_box{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "ylw" = (/turf/simulated/wall,/area/crew_quarters/sleep/vistor_room_8) "ylA" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_8) "ylL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) @@ -2627,16 +2697,16 @@ apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcap apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcrfSapcapcapcapcapcaqjapcaqjapcapcjhgjhgjhgjhgaexafcafxjhgaexafcafxjhgaexafcafxjhgaexafcafxjhgaexafcafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgaaiaakjhgjhgjhgjhgjhgfXnfXnagdahpaieaiPajCxBrakKalAanhfXnfXnjhgjhgjhgjhgjhgaakaaijhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfaoCbFIjhgqlfaoCbFIjhgqlfaoCbFIjhgqlfaoCbFIjhgqlfaoCbFIjhgjhgjhgapcjhgapcapcapcaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapctHbapcaqjapcapcapcapcapcaqjwvfjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgaakjhgjhgjhgjhgfXnfXnfXnaryasbatXauRauRauRauXacYavYfXnfXnfXnjhgjhgjhgjhgaakjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgaqjaqjapcapcvvIvvIvvIvvIjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgawyfXnfXnazvaAfaAAaBeaBsaBAaBWaFnaFqaFBaFTfXnfXnaHxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjtHbepgepgapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWiGWiGWiGWiGWiGWiGWjhgjhgjhgjhgjhgjhgjhgfXnfXnfXnaryasbatXauRaIPauRauXacYavYfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgaIVaIVaIVaIVaIVaIVaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgaqjaqjaqjaqjapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgtHbaqjaqjaqjaqjapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjaKjaKmaKLaMhaMsaMZiGWjhgjhgjhgjhgjhgaNxaNHaNHaOOaOOaTyaTKaUtauRauRauRakKaVjaVvfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVaWgaWsaXoaYxaZQbbVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapchtnapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcaqjapcapcapcapcapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgbdCjhgbdGbdGbdGaJqbgEbhybiMbjgbjzbjHaadbkmbkCiGWjhgjhgjhgjhgjhgbkJjhgjhgfXnfXnfXnblkbltbmcbmKbmcbngbnvfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVbopaanbqBbqJbqSbvrbvAbwZbxLbddbAfbAfbAfjhgjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcaqjapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbDSbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbFhbFEbGGbGLbGQbHJbHUbLcbOlbOEbORbOSbPDbQVbRjiGWapcapcapcapcapcbTyapcapcfXnfXnfXnfXnbTWbUebUZbVQbWJfXnfXnfXnfXnapcapcbXWapcapcapcapcapcaIVbYzbZncaicaScbkcdccewcfpcfscfycgcchpchrcihciHcjucklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckockUjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapctHbapcaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgwfsbdGclfclyclNcnTcpscpEbjgcqzbkmcqTcrbiGWiGWapcapcapcapcapcbTyapcapcapcapcfXnfXnfXnfXncrMfXnfXnfXnfXnapcapcapcapcbXWapcapcapcapcapcaIVaIVcuzcvIbqJcxobvrcxsczbcAdcBtcCecCtbAfjhgjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgaqjaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjiGWcEGcEHiGWiGWiGWapcapcapcapcapcapcbkJjhgjhgjhgcEXcEXcEXcEXfXncFpcFYcGKcEXcEXcEXjhgjhgjhgjhgapcapcapcapcapcapcaIVaIVaIVcGTcHhaIVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcITaMsiGWapcapcapcrGfapcapcjhgjhgbkJjhgjhgjhgcEXcJpcJIcKucMkcMPcNmcNDcJIcOxcEXjhgjhgjhgjhgjhgjhgapcapcrGfapcapcapcaIVcPNcPXaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcQEcQFiGWapcapcapcapcapcjhgjhgjhgbkJjhgjhgcQQcEXcRkcSScTwcVJcXwcXMcZBcZQcZQcEXjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcaIVbopdanaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcxeLxeLxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdcTiGWapcapcapcapcjhgjhgjhgjhgbkJjhgjhgjhgcEXddicZQddqcZQdducZQddqcZQdefcEXjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcaIVdetdfCaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcaqjvtfxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdgLiGWapcapcapcjhgjhgjhgjhgjhgbkJjhgjhgjhgcEXdjKcZQcEXdjVdmbdmxcEXdmHdogcEXjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcaIVdpBdpFaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapchtnaqjepgepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjtHbepgepgapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWiGWiGWiGWiGWiGWiGWjhgjhgjhgjhgjhgjhgjhgfXnfXnfXnaryasbatXauRaIPauRauXacYavYfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgaIVaIVaIVaIVaIVaIVaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJwvJwvJtzPwvJfUIfUIfUIfVUaqjaqjaqjaqjapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgtHbaqjaqjaqjaqjapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjaKjaKmaKLaMhaMsaMZiGWjhgjhgjhgjhgjhgaNxaNHaNHaOOaOOaTyaTKaUtauRauRauRakKaVjaVvfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVaWgaWsaXoaYxaZQbbVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJqhWrjAtpUcBSiJWxFdpacboEvZmfUIapcapcapcaqjepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcaqjapcapcapcapcapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgbdCjhgbdGbdGbdGaJqbgEbhybiMbjgbjzbjHaadbkmbkCiGWjhgjhgjhgjhgjhgbkJjhgjhgfXnfXnfXnblkbltbmcbmKbmcbngbnvfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVbopaanbqBbqJbqSbvrbvAbwZbxLbddbAfbAfbAfjhgjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJeAzheBrqhocqisJlUlwSpwSpwSpfUIapcapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcaqjapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbDSbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbFhbFEbGGbGLbGQbHJbHUbLcbOlbOEbORbOSbPDbQVbRjiGWapcapcapcapcapcbTyapcapcfXnfXnfXnfXnbTWbUebUZbVQbWJfXnfXnfXnfXnapcapcbXWapcapcapcapcapcaIVbYzbZncaicaScbkcdccewcfpcfscfycgcchpchrcihciHcjucklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckockUjhgjhgjhgjhgjhgjhgwvJouYjuxbNGtDYmEYijqfUIfUIhlIfUIapcapcapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapctHbapcaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgwfsbdGclfclyclNcnTcpscpEbjgcqzbkmcqTcrbiGWiGWapcapcapcapcapcbTyapcapcapcapcfXnfXnfXnfXncrMfXnfXnfXnfXnapcapcapcapcbXWapcapcapcapcapcaIVaIVcuzcvIbqJcxobvrcxsczbcAdcBtcCecCtbAfjhgjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJwGLdSMpmmfqDmEYkBpfUIfUInjzfUIfUIfVUapcapcapcapcfyIapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgaqjaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjiGWcEGcEHiGWiGWiGWapcapcapcapcapcapcbkJjhgjhgjhgcEXcEXcEXcEXfXncFpcFYcGKcEXcEXcEXjhgjhgjhgjhgapcapcapcapcapcapcaIVaIVaIVcGTcHhaIVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgwvJjqksmSquurVmiCRmaMmhKdeRcggnJiobUjjxuulekpapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcITaMsiGWapcapcapcrGfapcapcjhgjhgbkJjhgjhgjhgcEXcJpcJIcKucMkcMPcNmcNDcJIcOxcEXjhgjhgjhgjhgjhgjhgapcapcrGfapcapcapcaIVcPNcPXaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJpGtlPCkTOylpkQJrbBegbbhPuulkwmuulqlNapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcQEcQFiGWapcapcapcapcapcjhgjhgjhgbkJjhgjhgcQQcEXcRkcSScTwcVJcXwcXMcZBcZQcZQcEXjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcaIVbopdanaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJwzXmEYakkbAHmKTrbBegbfCiuuljHguulekpapcapcapcapcxeLxeLxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdcTiGWapcapcapcapcjhgjhgjhgjhgbkJjhgjhgjhgcEXddicZQddqcZQdducZQddqcZQdefcEXjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcaIVdetdfCaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJqeoycmvaolBLlBLfaIfUIfUIfUIfUIfUIfVUapcapcapcapcaqjvtfxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdgLiGWapcapcapcjhgjhgjhgjhgjhgbkJjhgjhgjhgcEXdjKcZQcEXdjVdmbdmxcEXdmHdogcEXjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcaIVdpBdpFaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgjhgjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJwvJwvJtzPwvJfUIfUIfUIfVUapcapcapcapcapcapchtnaqjepgepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdqbdrldrtapcapcapcjhgjhgjhgjhgjhgbkJjhgjhgdsudsudsudsudsucEXdsPcEXdvDdvDdvDdvDdvDjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcdwYdxldxFaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcaqjapcapcepgtHbapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdyydyJdrtapcapcjhgjhgjhgjhgjhgjhgbkJjhgdsudsudzQdAfdBhdsudBtdCldCBdvDdFrdFxdHadvDdvDjhgjhgjhgjhgjhgjhgjhgjhgapcapcdwYdImdItaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcaqjapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdIzdJOdrtapcapcjhgjhgjhgjhgjhgjhgbkJjhgdsudKjdMfdMhdNqdOIdQhdQndRodRtdRNdSNdTvdTRdvDjhgjhgjhgjhgjhgjhgjhgjhgapcapcdwYdUIdUZaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcaqjapcapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc @@ -2687,7 +2757,7 @@ apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcap apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcxPktQktQocrPtQWtRNgAUtRVnlEeTltOStSOgdRasOtTotTrtUYtVetVTtWUtWXtXdtXEtYAtZhtZjuaQucructucAtnzudnrvnueetpfueItpfuiCtpfujutpfujUueeukQqaUummqaUapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgaqjaqjaqjaqjxPkumqekjxPkunkuobcHmuoZupJquNurAnVnurWuqxrTIusiwzyutQuuquuquwAuxLuyYuzHuAltCJuALuEbuETuEWtnzueeuFJqvBkllrKclbyuFPrHDrQiucGuImuksuItqbVuJgshVapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcxPkqUsoltxPksvNsvNquNquNquNquNwzywzywzywzyxVftxmwzykqEuppuppkqEkqEuLrkqEnBdtnztnztnztnztnztnzuMGgkAuMGfNeuNbyeduNJrZOtFItpfuOouOouOoqaUuQFqaUaqjaqjaqjepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcwfRcKWdNIxdJoOkxPkuRFbSvwdVtbCsqklsVmFNwxUwxUwxUwxUklerNCrNCrNCpzvgdruSdcgtuSwrNCrNCrNCuSHwxUtpfmbQtpfdIEtpftpftpftpftpftpftpftBwtBwqaUuSUqaUapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcwfRcKWdNIxdJoOkxPkuRFbSvwdVtbCsqklsVmFNwxUwxUwxUwxUklerNCabqrNCpzvgdruSdcgtuSwabqrNCabquSHwxUtpfmbQtpfdIEtpftpftpftpftpftpftpftBwtBwqaUuSUqaUapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcxeLxeLepgapcapcapcapcxPkpBmuTKuTTuTYuUUuVPeXgeXgeXguWTeXgeXgaaMdQifbIfQwaajuYkaajuYkuYmuYruZKvaevagvaDvbbvaDvbbrQmvbKfLjtnFvdiqQgveovezueCvdmvfwvfQqaUqwlvherjSqaUapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcxeLvtfaqjaqjaqjaqjaqjxPkvhqupruprvhtxPkvicfUNmsevidmnqfEIfEIvikviXvjgvkNvlAvmBvlAvmBvogvoqvoPdyXvqWvsuvswvsIvtdvumvvyvvHvikvvMvvMvvNvwyvwHvxIvylvyuvyEvApqwlrjSqaUapcapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcxeLxeLepgapcaqjapcjhgxPktNVqlduprvAsxPkvAAbimvBOjtXvDkbimdSrwxUclBvDpwxUvDzvEPvFovGZvIbvIQvJcvJfvJXvKrvMdvMAvMBwxUvNsvPuwxUvPXvRgvRqvRwvSzvSIvSLvTuqaUvTErQKqRaqaUapcapcapcapcapcepgxeLxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc diff --git a/maps/southern_cross/southern_cross-5.dmm b/maps/southern_cross/southern_cross-5.dmm index bb5388178e..2751f5aac3 100644 --- a/maps/southern_cross/southern_cross-5.dmm +++ b/maps/southern_cross/southern_cross-5.dmm @@ -1,2794 +1,95831 @@ -"aa" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"ab" = (/obj/structure/table/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"ac" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"ad" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ae" = (/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"af" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ag" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"ah" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"ai" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gym"; dir = 1},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"aj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"al" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"am" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"an" = (/obj/structure/closet/secure_closet/guncabinet,/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"ao" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"ap" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/computer/cryopod/gateway{pixel_y = 30},/obj/machinery/newscaster{pixel_x = 29},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"aq" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 4"; dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ar" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Left Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"as" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"at" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"au" = (/obj/structure/closet/hydrant{pixel_x = -32},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"av" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"aw" = (/obj/machinery/vending/sol{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ax" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ay" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"az" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"aA" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/material/ashtray,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"aB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"aC" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"aD" = (/obj/effect/mist,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/sauna) -"aE" = (/obj/structure/fence/cut/large,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"aF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"aG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"aI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"aK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"aL" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"aM" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"aN" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23; pixel_y = 12},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) -"aP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"aQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"aR" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"aS" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"aT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/security) -"aV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aW" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"aX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"aY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"aZ" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar/red,/obj/item/frame/light,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"ba" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/emergency_storage) -"bb" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main5_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main5_airlock_exterior"; tag_interior_door = "main5_airlock_interior"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"bc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"be" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"bf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"bg" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"bh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"bi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"bj" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor_switch/oneway{id = "mining_north"; name = "mining conveyor"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"bk" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) -"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"bm" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"bo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"bp" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Engineering Outpost Substation"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/smes) -"bq" = (/obj/structure/fence/post{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"br" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"bs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"bt" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"bu" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"bv" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"bw" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"bx" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/status_display{pixel_y = -32},/obj/item/weapon/material/ashtray/plastic,/obj/random/cigarettes,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"by" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/blue/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"bz" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"bC" = (/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"bD" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"bE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/item/weapon/extinguisher/mini,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"bF" = (/obj/structure/table/steel,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"bG" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) -"bH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"bI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"bK" = (/obj/item/device/universal_translator,/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"bL" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"bM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"bN" = (/turf/simulated/wall,/area/surface/outpost/mining_main/storage) -"bO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_1) -"bP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/mountains) -"bQ" = (/obj/structure/boxingropeenter{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"bR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"bS" = (/obj/structure/table/glass,/obj/item/device/paicard,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"bT" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"bU" = (/obj/structure/flora/tree/pine/xmas,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"bV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"bW" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/structure/bedsheetbin,/obj/effect/floor_decal/corner/white/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"bX" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"bY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"bZ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"ca" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"cb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"cc" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"cd" = (/obj/structure/boxingrope{layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"ce" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"cf" = (/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"cg" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"ch" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ci" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"cj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ck" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) -"cl" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/gear_painter,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"cm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cn" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"co" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cp" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"cq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"cr" = (/turf/simulated/wall,/area/surface/outpost/mining_main/emergencystorage) -"cs" = (/obj/structure/table/standard,/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/light{dir = 8},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"cu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"cv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"cx" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"cy" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"cz" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"cA" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"cB" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"cD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"cE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) -"cF" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/ocean) -"cG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"cI" = (/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = 22},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"cJ" = (/obj/effect/zone_divider,/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) -"cK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ1_airlock_control"; pixel_x = -26; pixel_y = 26; tag_exterior_door = "civ1_airlock_exterior"; tag_interior_door = "civ1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"cL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"cM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"cO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"cP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cQ" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"cR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"cS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"cT" = (/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"cU" = (/obj/machinery/mineral/equipment_vendor/survey,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"cW" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"cX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"cY" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Exploration Prep"; req_access = null; req_one_access = list(43,67)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) -"cZ" = (/obj/structure/snowman{name = "Frosty"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"da" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"db" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"dc" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"dd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"de" = (/obj/machinery/vending/medical{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Port"},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"df" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"dg" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dh" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"dk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dm" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"dn" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"do" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 4"; dir = 1; name = "MO Right Wing - Hallway Three"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"dq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"dr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ds" = (/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"dt" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"du" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_4) -"dv" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"dw" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/item/weapon/storage/box/nifsofts_mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"dy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_6) -"dA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"dB" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"dE" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 2"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 100},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"dF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"dG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) -"dH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"dI" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"dJ" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"dK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"dL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dM" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"dN" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dO" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/smes) -"dQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"dR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"dT" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/meter,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"dW" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/item/weapon/dice/d20,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"dX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"dY" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"dZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"ea" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"eb" = (/obj/structure/fence/corner{dir = 10},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"ec" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"ef" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 6"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eg" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"eh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/one) -"ej" = (/obj/machinery/vending/loadout/loadout_misc,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 1"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ek" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"el" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"em" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"en" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"eo" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ep" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"eq" = (/obj/structure/table/glass,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"er" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"es" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"et" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/computer/guestpass{pixel_y = 28},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/tools) -"ev" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"ew" = (/obj/machinery/space_heater,/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ex" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"ez" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eB" = (/obj/machinery/conveyor{id = "mining_north"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"eC" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"eD" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/vending/giftvendor,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eE" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"eF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"eG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"eH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"eI" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"eJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eK" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"eL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eM" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"eN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"eO" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"eP" = (/turf/simulated/wall,/area/surface/outpost/mining_main) -"eQ" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eR" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"eS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"eT" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"eU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"eV" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"eW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"eX" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"eY" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"fa" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"fb" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"fc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"fd" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"fe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ff" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; landmark_tag = "outpost_nw"; name = "Northwest Outpost Perimiter"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"fg" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/orange/border{dir = 10},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = 3},/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 2"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"fi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"fj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fl" = (/obj/item/weapon/banner/virgov,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"fm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"fn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"fo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"fp" = (/turf/simulated/floor/water/shoreline,/area/surface/outside/ocean) -"fq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"fr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"fs" = (/obj/structure/table/glass,/obj/item/clothing/shoes/swimmingfins,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ft" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"fu" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"fv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"fw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fx" = (/turf/simulated/floor/tiled,/area/surface/outpost/security) -"fy" = (/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"fz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"fA" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"fB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"fC" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"fD" = (/obj/machinery/mineral/input,/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"fE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) -"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"fG" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"fH" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 3"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"fI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Airlock"; dir = 9; name = "Engineering_Outpost"; network = list("Engineering")},/obj/structure/sign/christmas/wreath{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"fJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"fK" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"fL" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"fM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"fN" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"fO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"fP" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(1)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_interior"; locked = 1; name = "Security Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) -"fQ" = (/turf/simulated/wall,/area/surface/outside/path/plains) -"fS" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"fT" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"fU" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"fV" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"fY" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"fZ" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ga" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"gb" = (/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) -"gc" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"gd" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ge" = (/obj/item/clothing/suit/caution,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"gf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"gg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"gh" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"gj" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/search_and_rescue) -"gk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_upper) -"gl" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"gm" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"gn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"go" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"gp" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"gq" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"gr" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"gs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/structure/table/standard,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"gt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"gu" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"gw" = (/obj/machinery/fusion_fuel_compressor,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Fuel Storage"; dir = 6; name = "Engineering_Outpost"; network = list("Engineering")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"gx" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"gy" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1438; id = "rust_cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"gz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"gB" = (/obj/machinery/button/windowtint{id = "sauna_tint1"; pixel_x = -5; pixel_y = 22},/obj/machinery/button/windowtint{id = "sauna_tint2"; pixel_x = 6; pixel_y = 22},/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"gC" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"gD" = (/turf/simulated/floor/water/shoreline{dir = 9},/area/surface/outside/ocean) -"gE" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"gG" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/plains/mountains) -"gH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"gI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"gJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"gK" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) -"gL" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"gM" = (/obj/structure/table/bench/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"gN" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"gO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"gP" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/orange/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"gQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"gR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"gS" = (/obj/structure/closet/crate/freezer/rations,/obj/effect/floor_decal/industrial/outline,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"gT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"gV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"gW" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"gX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"gZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ha" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"hb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) -"hd" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"he" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 1"; dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"hg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"hh" = (/obj/structure/closet/secure_closet/guncabinet{req_access = newlist(); req_one_access = list(43,67)},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"hk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"hl" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) -"hm" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"hn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ho" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/structure/flora/pottedplant/xmas,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"hq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"hr" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) -"hs" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 2"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"ht" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"hu" = (/obj/machinery/disposal,/obj/machinery/light_construct{dir = 4},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"hv" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"hw" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"hx" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"hy" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Shuttle Landing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"hA" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/security{c_tag = "SO - Airlock Access"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"hB" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"hC" = (/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"hD" = (/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"hE" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"hF" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hG" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"hH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"hI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"hJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"hK" = (/turf/simulated/floor/outdoors/snow,/area/surface/outside/plains/outpost) -"hL" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"hM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"hN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"hO" = (/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) -"hP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hQ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/symbol/lo{pixel_x = -32},/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"hR" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hS" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Tool Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"hT" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"hU" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"hV" = (/obj/structure/fence/corner{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"hW" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"hX" = (/obj/structure/table/rack,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"hY" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"hZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ib" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/emergency_storage/two) -"ic" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_three) -"id" = (/obj/effect/floor_decal/borderfloor,/obj/structure/closet/wardrobe/pjs,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"if" = (/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"ig" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"ih" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/item/weapon/pickaxe,/obj/item/device/gps/mining,/obj/item/clothing/head/hardhat/orange,/obj/machinery/vending/wallmed1{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ii" = (/obj/machinery/teleport/hub,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"ij" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"il" = (/obj/structure/fence/corner,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"im" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"in" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"io" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ip" = (/obj/effect/shuttle_landmark{landmark_tag = "response_ship_planet"; name = "Sif Surface East"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"iq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"ir" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"is" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"it" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"iu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"iw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ix" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"iy" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"iz" = (/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"iA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"iC" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"iD" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"iE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"iF" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) -"iG" = (/obj/effect/overlay/snow/floor,/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"iH" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"iI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"iJ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/animal/passive/mouse/mining,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"iK" = (/obj/structure/table/woodentable,/obj/structure/flora/pottedplant/small,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"iL" = (/obj/effect/overlay/snow/floor,/obj/structure/grille,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"iM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_one) -"iN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"iO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"iR" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"iS" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/air_sensor{frequency = 1438; id_tag = "rustengine_sensor"; output = 63},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"iU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "ENG_Outpost_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "ENG_Outpost_airlock_exterior"; tag_interior_door = "ENG_Outpost_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"iV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"iW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"iX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"iZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"ja" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"jb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"jc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"jd" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_engineering{name = "Reactor Monitoring Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/monitoring) -"jf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"jg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security) -"ji" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"jj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"jk" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"jl" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"jm" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jn" = (/obj/item/stack/material/wood,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"jo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"jr" = (/obj/item/weapon/reagent_containers/glass/bucket/wood,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"js" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"jt" = (/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ju" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "External Access Button"; pixel_x = -26; req_one_access = list(48,10)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) -"jv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"jw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"jx" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) -"jy" = (/obj/machinery/computer/guestpass{pixel_y = 28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "sec1_airlock_control"; pixel_x = 26; pixel_y = 26; req_one_access = list(1); tag_exterior_door = "sec1_airlock_exterior"; tag_interior_door = "sec1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"jz" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"jA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jC" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"jD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jE" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"jF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"jI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"jJ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"jK" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"jL" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"jM" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"jN" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"jO" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"jQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jR" = (/obj/machinery/vending/foodasian{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"jT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"jU" = (/obj/item/weapon/stock_parts/motor,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"jW" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"jX" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"jY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"jZ" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ka" = (/obj/structure/closet/athletic_mixed,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/multi_tile/metal{name = "Fauna Containment"; req_one_access = list(1,43)},/obj/machinery/door/firedoor/multi_tile/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"kc" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ke" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"kf" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"kg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"kh" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"ki" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"kj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"kk" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"kl" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"km" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"kn" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/machinery/status_display{pixel_y = 32},/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ko" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"kp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"kq" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/matches,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"ks" = (/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"ku" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kv" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"kw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"kx" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) -"ky" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"kz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"kA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kB" = (/obj/structure/table/bench/standard,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"kC" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "Internal Access Button"; pixel_x = 6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) -"kD" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"kE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -26},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kF" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"kG" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"kI" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/tool,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Main Outpost"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"kJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/black{dir = 5},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"kK" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) -"kL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) -"kM" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"kN" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"kO" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"kQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"kR" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"kS" = (/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"kU" = (/obj/machinery/mineral/input,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"kV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"kW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Teleporter Access"; req_access = newlist(); req_one_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"kX" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/heater/sauna{dir = 8; icon_state = "heater_1"; use_power = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"kY" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"kZ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"la" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lb" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"lc" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"ld" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_1) -"le" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"lf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"lg" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 3"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"li" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"lj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main) -"lk" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 2"; dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"lm" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) -"ln" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"lo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lp" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"lq" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"lr" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 2"; dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ls" = (/obj/machinery/vending/loadout,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"lt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"lu" = (/obj/item/clothing/head/hardhat/orange,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"lv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lw" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"lx" = (/obj/structure/table/marble,/obj/item/device/starcaster_news,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ly" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"lz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"lA" = (/turf/simulated/wall/dungeon{icon = 'icons/obj/doors/shuttledoors.dmi'; icon_state = "door_locked"; name = "Wall Gate"},/area/surface/outpost/wall) -"lB" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"lC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{rad_resistance = 150},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lD" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"lE" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"lF" = (/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lG" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"lH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"lK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"lL" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"lM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"lO" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lP" = (/turf/simulated/wall,/area/surface/outpost/mining_main/cave) -"lQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"lR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"lS" = (/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"lT" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"lU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"lV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 2"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"lW" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/atmos_room) -"lX" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 1"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 750000},/obj/structure/cable,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lY" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"lZ" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/cola,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"ma" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"mb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"mc" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_two) -"md" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"mf" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"mh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"mi" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"mj" = (/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"mk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"ml" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"mm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"mn" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope{dir = 6},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"mo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"mp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"mq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"mr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"ms" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"mu" = (/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"mv" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"mw" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"mx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/machinery/light,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"my" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"mz" = (/obj/structure/table/standard,/obj/item/weapon/soap/syndie,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"mA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"mB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"mC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"mD" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"mE" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"mF" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mG" = (/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mH" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"mI" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"mJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration/containment) -"mK" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"mL" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"mM" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"mN" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mO" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"mP" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"mQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"mR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"mS" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) -"mT" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"mU" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"mV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"mW" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/industrial/teleport_defense,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/teleporter) -"mX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"mY" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/catwalk,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "SUBS - Eng Outpost"; dir = 4; name = "Engineering_Outpost"; network = list("Engineering Outpost")},/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"na" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nc" = (/obj/structure/closet/emcloset,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"nd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"ne" = (/obj/effect/zone_divider,/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) -"nf" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Auxiliary Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ng" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"nh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ni" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"nl" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"nm" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = 3},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = -4},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 1"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"nn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"no" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"np" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"nq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"nr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ns" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"nt" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"nv" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"nw" = (/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"ny" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"nz" = (/obj/effect/floor_decal/borderfloor/cee,/obj/effect/floor_decal/industrial/danger/cee,/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"nA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"nC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"nD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nE" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"nF" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"nG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"nH" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"nI" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) -"nJ" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoronglass,/obj/fiftyspawner/rglass,/obj/fiftyspawner/rods,/obj/fiftyspawner/steel,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 1"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"nK" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"nL" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"nM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"nN" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"nO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"nP" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"nQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"nR" = (/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Engineering Outpost"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/obj/structure/cable/blue,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"nS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"nT" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/reactor_smes) -"nU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"nV" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/fishing) -"nW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"nX" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"nY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"nZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"oa" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"ob" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"oc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 1"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"od" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"oe" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"of" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"og" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oh" = (/obj/machinery/hologram/holopad,/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"oi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"oj" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"ok" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ol" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"om" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/mask/gas/half,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"on" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oo" = (/obj/structure/closet/secure_closet/explorer,/obj/item/weapon/pickaxe,/obj/machinery/light{dir = 1},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"op" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"oq" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"os" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/random/soap,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"ot" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ou" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"ow" = (/obj/structure/flora/pottedplant/xmas,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"ox" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oy" = (/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"oz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"oA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"oC" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"oD" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) -"oE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"oF" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/computer/timeclock/premade/north,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"oH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"oI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) -"oJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"oL" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"oM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor) -"oN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oO" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"oQ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_one) -"oS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"oT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"oU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"oV" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"oX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"oY" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"oZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"pa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"pb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pc" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/item/weapon/storage/laundry_basket,/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"pd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"pe" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"pf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"pg" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ph" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pi" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"pj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pk" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"pl" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"pm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"pn" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 2"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"po" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"pp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pq" = (/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ps" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"pu" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pw" = (/obj/structure/fence/end{dir = 4},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"px" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"py" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"pz" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"pA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"pB" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"pC" = (/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) -"pD" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/item/weapon/tank/oxygen{pixel_x = -2; pixel_y = 3},/obj/item/weapon/tank/oxygen{pixel_x = 1; pixel_y = -5},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"pE" = (/obj/structure/stasis_cage,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"pF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"pG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"pH" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"pJ" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"pK" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"pL" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"pM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"pN" = (/turf/simulated/wall,/area/surface/outpost/main/search_and_rescue) -"pO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"pP" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"pQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"pR" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/item/clothing/gloves/duty,/obj/item/clothing/gloves/duty,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/accessory/storage/webbing,/obj/item/clothing/accessory/storage/webbing,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"pS" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"pT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pU" = (/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"pV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust/corner,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pW" = (/turf/simulated/floor/water/shoreline/corner{dir = 1},/area/surface/outside/ocean) -"pX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pY" = (/obj/item/stack/flag/green{pixel_x = -4},/obj/item/stack/flag/red,/obj/item/stack/flag/yellow{pixel_x = 4},/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"qb" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qc" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"qd" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 5; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"qe" = (/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"qf" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qg" = (/turf/simulated/wall,/area/surface/outpost/main/bar) -"qh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"qi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qj" = (/obj/machinery/computer/timeclock/premade/east,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room Access"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"ql" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/visible,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"qm" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"qn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qo" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"qp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"qq" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"qs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Auxiliary Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 9; d2 = 10; icon_state = "9-10"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"qt" = (/obj/structure/flora/pottedplant/dead,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"qu" = (/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"qv" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"qw" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"qx" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"qy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"qz" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"qA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"qB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"qD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"qE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"qF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"qG" = (/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"qH" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"qK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"qM" = (/obj/item/modular_computer/console/preset/security,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qN" = (/turf/simulated/wall,/area/surface/outpost/civilian/smes) -"qO" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"qQ" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"qR" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"qT" = (/turf/simulated/wall,/area/surface/outpost/main/exploration) -"qU" = (/obj/machinery/conveyor_switch{id = "mining_external"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"qV" = (/turf/simulated/wall,/area/surface/outpost/main/corridor/left_lower) -"qW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/obj/machinery/power/thermoregulator,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qX" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qZ" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 2"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"ra" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"rb" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/lead{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plasteel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/item/stack/material/copper{amount = 25},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"rc" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"rd" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/orange/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"re" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"rf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/machinery/microwave{pixel_x = -2; pixel_y = 5},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"rg" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) -"rh" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Construction Area"},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) -"ri" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Construction Area"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) -"rk" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"rl" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"rm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"rn" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"ro" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Civilian"; charge = 500000; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"rq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"rr" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) -"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ru" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"rv" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"rw" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ry" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"rz" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"rA" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"rB" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"rC" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"rD" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/engineering/monitoring) -"rE" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 1"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"rF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"rG" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"rI" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) -"rK" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"rL" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 5; tag_west = 1; use_power = 0},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"rM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) -"rN" = (/obj/structure/closet/lasertag/red,/obj/item/stack/flag/red,/obj/machinery/light,/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"rO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"rP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"rQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"rR" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/tcomm) -"rT" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"rU" = (/obj/machinery/vending/loadout/clothing,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"rV" = (/turf/simulated/wall/solidrock,/area/surface/outpost/wall) -"rW" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) -"rX" = (/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) -"rZ" = (/obj/structure/table/rack,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"sa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"sb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Custodial Closet"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"sc" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"sd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"se" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"sf" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 8},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = -20; pixel_y = -10; req_one_access = list(48)},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) -"sg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/corridor/left_lower) -"si" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) -"sj" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"sk" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/tool,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"sl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"sm" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sn" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/device/gps/mining{pixel_x = -5},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/item/device/gps/mining{pixel_x = 5},/obj/item/device/gps/mining{pixel_x = -5},/obj/item/device/gps/mining{pixel_x = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"so" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"sp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"sq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sr" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ss" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"st" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"su" = (/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"sv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"sx" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"sy" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sz" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 3"; dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"sA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"sB" = (/obj/structure/table/marble,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"sC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"sD" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage2"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) -"sE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sF" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"sH" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"sI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sK" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/vending/coffee{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"sL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"sM" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"sN" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"sO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"sP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/heavyduty,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"sT" = (/obj/structure/table/marble,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"sU" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sV" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"sW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) -"sX" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ta" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"tb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room East"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"tc" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"td" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"te" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"tf" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"tg" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"th" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ti" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"tj" = (/turf/simulated/wall,/area/surface/outpost/civilian/pool) -"tk" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 1"; dir = 8},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"tl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"tm" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"tn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"to" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) -"tp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) -"tq" = (/obj/structure/catwalk,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"tr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ts" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"tt" = (/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"tu" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"tv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tw" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"tx" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ty" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"tz" = (/obj/machinery/door/airlock/glass_security{name = "Master at Arms"},/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/security/maa) -"tA" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"tB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tC" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"tD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"tE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"tF" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"tG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "rust_cooling_in"; name = "Engine Cooling Control"; output_tag = "rust_cooling_out"; sensors = list("rustengine_sensor"="Engine Temperature")},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"tH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"tI" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"tJ" = (/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 9; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"tK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"tL" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id = "Reactor Gyrotron"; id_tag = "Reactor Gyrotron"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"tM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) -"tN" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"tO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"tP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tQ" = (/obj/structure/table/bench/wooden,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"tR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"tS" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tT" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"tU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"tV" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"tW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tX" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/flora/pottedplant/bamboo,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"tY" = (/turf/simulated/floor/water/shoreline/corner{dir = 8},/area/surface/outside/ocean) -"tZ" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"ua" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"ub" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/closet/toolcloset,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uc" = (/obj/structure/closet/secure_closet/guncabinet/phase{name = "phase weapon cabinet"; req_access = newlist(); req_one_access = list(43,67)},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Exploration Prep"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"ud" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"ue" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) -"uf" = (/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/device/starcaster_news,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"ug" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"uh" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_three) -"ui" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/bar) -"uj" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/turretid/stun{check_records = 0; control_area = "\improper Main Outpost Teleporter"; name = "Main Outpost Teleporter turret control"; pixel_y = 24; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"uk" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ul" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"um" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/button/windowtint{id = "dorm_tint5"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"un" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"up" = (/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"uq" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"ur" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"us" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"ut" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uu" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "Tcoms - Main Outpost"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"uv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/security/smes) -"uw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/security) -"ux" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"uy" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"uz" = (/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"uA" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"uB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"uC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"uD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uE" = (/turf/simulated/floor/water,/area/surface/outside/lake/romsele) -"uF" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) -"uG" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"uH" = (/obj/structure/snowman/borg,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"uJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"uK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uL" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"uM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"uN" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"uO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"uP" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uQ" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"uR" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"uS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"uT" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"uU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"uV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uW" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"uX" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"uY" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"uZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"vb" = (/turf/simulated/wall,/area/surface/outpost/main/showers) -"vc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"vd" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ve" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"vf" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_upper) -"vg" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security) -"vh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"vj" = (/obj/effect/engine_setup/pump_max,/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"vk" = (/obj/machinery/light,/obj/effect/landmark{name = "JoinLateSifPlains"},/obj/effect/landmark/start{name = "Outsider"},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"vl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"vm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vn" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vo" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"vp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"vq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"vs" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"vt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"vv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"vw" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"vx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"vy" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"vz" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Production Room"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"vA" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"vB" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/mountains) -"vC" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"vD" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vE" = (/obj/structure/table/steel,/obj/structure/closet/secure_closet/medical_wall/pills{pixel_y = 32},/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 12},/obj/random/medical/pillbottle,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"vF" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"vG" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope{dir = 9},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"vH" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"vI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"vJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"vK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"vO" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"vP" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vQ" = (/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vR" = (/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"vT" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"vU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"vV" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"vW" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"vY" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"vZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wa" = (/obj/machinery/light_construct,/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut/empty,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"wb" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"wc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"wd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"we" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"wf" = (/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/refinery) -"wg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"wh" = (/turf/simulated/wall,/area/surface/outpost/main/gym) -"wi" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"wj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"wk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"wm" = (/obj/machinery/vending/coffee{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"wn" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/random_multi/single_item/hand_tele,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"wo" = (/obj/effect/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wp" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) -"wq" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"wr" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ws" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_three) -"wt" = (/obj/structure/closet/athletic_mixed,/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"wu" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"wv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ww" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"wx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"wy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"wz" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"wA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"wC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"wD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"wE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/structure/table/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_lower) -"wH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"wI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) -"wJ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"wK" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_exterior"; locked = 1; name = "Engineering Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) -"wL" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"wM" = (/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"wN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"wO" = (/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"wP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Foyeur"; dir = 10; name = "Engineering Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"wQ" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"wS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"wT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wU" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"wV" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Containment Pen"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"wX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"wY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"wZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xa" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xb" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"xd" = (/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"xe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"xh" = (/turf/simulated/floor/water/shoreline{dir = 6},/area/surface/outside/ocean) -"xi" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) -"xk" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "External Access Button"; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) -"xl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) -"xn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"xp" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"xq" = (/turf/simulated/floor/wood{outdoors = 1},/area/surface/outside/path/plains) -"xr" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"xs" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"xt" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 3"},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) -"xw" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"xx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"xy" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room South"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"xz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"xA" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Explorer"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"xB" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/mineral/input,/obj/structure/sign/warning/moving_parts{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"xC" = (/obj/item/stack/material/wood,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"xD" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"xE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xF" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"xG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"xH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"xI" = (/obj/machinery/telecomms/relay/preset/southerncross/cave,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"xJ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"xK" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"xL" = (/turf/simulated/floor/water,/area/surface/outside/ocean) -"xM" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction/yjunction,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xN" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"xO" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"xP" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"xQ" = (/obj/structure/fence/end,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"xR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"xS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"xT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"xU" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 5; pixel_y = 2},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"xV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"xW" = (/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"xX" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"xY" = (/obj/structure/table/glass,/obj/item/inflatable{pixel_x = 6; pixel_y = 6},/obj/item/inflatable{pixel_x = 2; pixel_y = 2},/obj/item/inflatable{pixel_x = -2; pixel_y = -3},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xZ" = (/obj/structure/table/bench/standard,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) -"ya" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"yb" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"yc" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"yd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"ye" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"yg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"yh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"yi" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"yj" = (/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) -"yk" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"yl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"ym" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"yn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"yo" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"yp" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"yq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"yr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"ys" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"yt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 9; icon_state = "2-9"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"yu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"yv" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"yx" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"yy" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"yz" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"yA" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 2"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"yB" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"yC" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"yD" = (/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"yE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"yF" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/space) -"yG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"yH" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"yI" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"yJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"yK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"yL" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_5) -"yM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"yN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"yO" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"yP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main1_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main1_airlock_exterior"; tag_interior_door = "main1_airlock_interior"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"yQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main) -"yR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"yS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"yT" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"yV" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"yW" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"yX" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"yY" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"yZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"za" = (/turf/simulated/floor/water/shoreline{dir = 4},/area/surface/outside/ocean) -"zb" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) -"zc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"zd" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"ze" = (/obj/machinery/telecomms/relay/preset/southerncross/skylands,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"zf" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"zg" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/mountains) -"zh" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"zi" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zj" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"zk" = (/obj/machinery/mineral/unloading_machine,/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"zl" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"zm" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"zn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zo" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zp" = (/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"zr" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"zt" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"zu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"zv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"zw" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"zx" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"zz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"zC" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; landmark_tag = "outpost_s"; name = "South of Outpost"},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"zD" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint6"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint6"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_6) -"zE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/recharger,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"zF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"zG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zH" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"zI" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{name = "Fuel Storage Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"zJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"zK" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"zL" = (/obj/structure/table/steel,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"zM" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) -"zN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"zO" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"zP" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/shoes/galoshes,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"zQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint5"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint5"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_5) -"zS" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_4) -"zV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"zW" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zX" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"zY" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"zZ" = (/obj/structure/fence/corner{dir = 9},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Aa" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_two) -"Ac" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Ae" = (/obj/machinery/light,/obj/item/weapon/book/manual/rust_engine,/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Af" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ag" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ah" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Ai" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Aj" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"Ak" = (/obj/effect/map_effect/portal/line/side_a,/obj/effect/map_effect/perma_light/concentrated,/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"Al" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"Am" = (/obj/effect/overlay/snow/floor,/obj/machinery/disposal,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"An" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ao" = (/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"Ap" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Aq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ar" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/backup_kit{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/cdeathalarm_kit,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"As" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) -"At" = (/turf/simulated/wall/r_wall,/area/surface/outside/plains/outpost) -"Au" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Av" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/flora/pottedplant/xmas,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Aw" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Right Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Ax" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Ay" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Az" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main6_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "main6_airlock_exterior"; tag_interior_door = "main6_airlock_interior"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"AA" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"AB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"AC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"AE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AG" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light/small{dir = 4},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"AH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"AI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"AJ" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/item/weapon/tool/wrench,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"AK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) -"AL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"AM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"AN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"AO" = (/obj/effect/floor_decal/borderfloor/full,/obj/effect/floor_decal/industrial/danger/full,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen{anchored = 1; req_access = list(1,43); state = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"AP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/glass_jar,/obj/structure/table/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"AQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"AR" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"AT" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"AU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"AW" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/tcomm) -"AX" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"AY" = (/obj/effect/landmark/start{name = "Search and Rescue"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"AZ" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ba" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Bb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Bc" = (/obj/structure/catwalk,/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Bd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Be" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Bf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Bg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Bh" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Bj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Bk" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/obj/machinery/light{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"Bl" = (/turf/simulated/wall,/area/surface/outpost/main/emergency_storage/one) -"Bm" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_5) -"Bn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Bo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Bp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Bq" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Br" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"Bs" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Bt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor/corner,/obj/item/weapon/extinguisher/mini,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Bu" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Bv" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"Bw" = (/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Bx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"BA" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"BB" = (/obj/machinery/telecomms/relay/preset/southerncross/planet,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"BC" = (/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"BD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"BE" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"BF" = (/obj/effect/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"BG" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/light,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"BH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 1"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"BI" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock Access"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"BJ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"BK" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"BL" = (/obj/structure/table/woodentable,/obj/item/toy/bouquet,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"BM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"BN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/ender{icon_state = "1-2"; id = "surface_cave"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"BO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"BP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"BQ" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"BR" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"BS" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"BT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"BU" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"BV" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"BW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/newscaster{pixel_x = -30},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"BX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"BY" = (/obj/structure/table/steel,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"BZ" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Cb" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_exterior"; locked = 1; name = "Landing South External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) -"Cc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Starboard"; dir = 8},/obj/structure/window/reinforced{health = 1e+006; req_access = list(5)},/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/southleft{dir = 8; name = "EMT Supplies"; req_access = list(5); req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Cd" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) -"Ce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Cf" = (/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"Cg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Ch" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/monitoring) -"Ci" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) -"Ck" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Cl" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/fusion_core/mapped{id_tag = "Outpost Fusion Core"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Cm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Cn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Co" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/landmark{name = "JoinLateGateway"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"Cp" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Cq" = (/obj/machinery/mech_recharger,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Cr" = (/obj/structure/closet/crate{name = "Tritium Storage"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"Cs" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Cu" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) -"Cv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Cx" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"Cy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"CA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"CB" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 7; tag_north = 2; tag_south = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"CC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CD" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"CE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/emergency_storage) -"CF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CG" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"CH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/visible/supply,/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"CI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"CM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"CN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"CO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"CP" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"CQ" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/light/small{dir = 8},/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"CR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"CT" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_one) -"CU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"CX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"CY" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"CZ" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"Da" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"Db" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Dc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) -"Dd" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"De" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Df" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Dh" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Di" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Dj" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Dk" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 5},/obj/item/weapon/storage/backpack/dufflebag,/obj/item/clothing/shoes/boots/winter/climbing,/obj/item/clothing/shoes/boots/winter/climbing,/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 1"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Dl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/light{dir = 8},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Dn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Do" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Dq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"Dr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ds" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"Dt" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Du" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Dv" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_6) -"Dw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_left) -"Dz" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"DA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"DB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"DC" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"DD" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/vending/loadout/gadget,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"DG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"DH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"DI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"DJ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"DK" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"DL" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"DM" = (/obj/structure/closet/lasertag/blue,/obj/item/stack/flag/blue,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"DN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"DO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"DP" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"DQ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"DT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"DU" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"DW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost SMES Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"DX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"DY" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"DZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ea" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Eb" = (/obj/structure/fence,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Ec" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"Ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"Ee" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"Ef" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"Eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ei" = (/obj/structure/table/steel,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Ej" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/auxiliary_storage) -"Ek" = (/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"El" = (/obj/effect/floor_decal/corner/brown{dir = 9},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"En" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"Ep" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_one) -"Eq" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"Er" = (/obj/machinery/telecomms/relay/preset/southerncross/wild,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"Es" = (/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Et" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"Eu" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"Ev" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ew" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ex" = (/obj/effect/landmark{name = "bluespacerift"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"Ey" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"Ez" = (/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EA" = (/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"EB" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"EC" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ED" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"EE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"EF" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/construction_area) -"EH" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic{pixel_x = 7},/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"EI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"EJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"EK" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"EL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"EM" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"EN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"EO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"EP" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"EQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_lower) -"ER" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"ES" = (/obj/machinery/teleport/station,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"ET" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"EV" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"EW" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"EX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"EY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/structure/table/standard,/obj/random/action_figure,/obj/item/weapon/coin/silver,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"EZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Fa" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Fb" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Fc" = (/obj/machinery/conveyor{dir = 4; id = "mining_north"},/obj/machinery/mineral/input,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"Fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Fe" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Ff" = (/obj/machinery/cablelayer,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Fg" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Fi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Fj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Fl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gym) -"Fm" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Fn" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"Fo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Fp" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Fq" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm6"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"Fr" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"Fs" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Ft" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Fu" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Fv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Fy" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 2"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Fz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"FA" = (/obj/item/weapon/banner/nt,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"FB" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"FC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"FD" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"FE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"FF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main7_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main7_airlock_exterior"; tag_interior_door = "main7_airlock_interior"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"FH" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"FI" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/device/gps/security,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"FJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"FK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"FL" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_3) -"FM" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"FN" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"FO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/symbol/em{pixel_x = 32},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"FP" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"FQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"FR" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/pool) -"FS" = (/obj/structure/table/steel,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"FU" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"FV" = (/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"FW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"FX" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"FY" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"FZ" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ga" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Gb" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Gc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Gd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Ge" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Gf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ2_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "civ2_airlock_exterior"; tag_interior_door = "civ2_airlock_interior"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Gg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Gh" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Gi" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Left Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Gj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Gk" = (/obj/structure/snowman/spider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Gl" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Security Checkpoint"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"Gm" = (/obj/structure/undies_wardrobe,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Gn" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Gp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Gq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"Gr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Gs" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/ocean) -"Gt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Gu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Gv" = (/turf/simulated/floor/water/shoreline/corner{dir = 4},/area/surface/outside/ocean) -"Gw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Gx" = (/obj/structure/table/steel,/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Gy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Gz" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"GA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"GB" = (/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"GC" = (/obj/machinery/mech_recharger,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"GD" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"GE" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"GF" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"GG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"GI" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"GJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_two) -"GK" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"GL" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; name = "Reactor Core"; rad_resistance = 150; req_access = list(11)},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"GM" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"GN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"GO" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/secure_closet/engineering_welding,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"GP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"GQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"GR" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"GS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"GT" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Mining Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) -"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"GV" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"GW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"GX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"GY" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"GZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ha" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"Hb" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) -"Hc" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Hd" = (/obj/structure/closet/wardrobe/black,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"He" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Hf" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"Hg" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_two) -"Hh" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) -"Hi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Hj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"Hk" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Hl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Hm" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Hn" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"Ho" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"Hp" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Hq" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Hr" = (/obj/effect/overlay/snow/floor,/obj/structure/symbol/gu{pixel_x = -32},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Hs" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"Ht" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Hu" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"Hv" = (/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Hw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Hx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) -"Hy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Hz" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_right) -"HA" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"HB" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"HC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"HD" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_one) -"HE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"HF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 8; icon_state = "6-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"HG" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"HH" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"HI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"HK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"HL" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"HM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"HN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 2"; dir = 4; name = "security camera"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"HO" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"HP" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"HQ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"HR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"HS" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"HU" = (/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"HV" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"HW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"HX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"HY" = (/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"HZ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ib" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/storage) -"Ic" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Id" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"If" = (/obj/machinery/door/airlock{id_tag = "dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) -"Ig" = (/turf/simulated/floor/water/deep,/area/surface/outside/ocean) -"Ih" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ii" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) -"Ij" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ik" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Il" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Im" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Mining"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"In" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Io" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/space) -"Ip" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration) -"Iq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ir" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"Is" = (/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"It" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Iu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Iv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Iw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ix" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"Iy" = (/obj/machinery/mineral/processing_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"IA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"IC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ID" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_exterior"; locked = 1; name = "Landing North External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) -"IE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"IF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) -"IG" = (/obj/effect/overmap/visitable/planet/Sif,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"IH" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"II" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) -"IJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"IK" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"IM" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"IN" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Laundry"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) -"IO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"IP" = (/obj/structure/closet/secure_closet/guncabinet/phase{req_one_access = null},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"IQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"IR" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/accessory/holster/hip,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"IS" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"IT" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"IU" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"IV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"IW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"IX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main2_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main2_airlock_exterior"; tag_interior_door = "main2_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"IY" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = 22; req_one_access = list(48)},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"IZ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Ja" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Jb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Civilian"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"Jc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Jd" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Teleporter"; dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Jf" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/obj/machinery/light/spot,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Jg" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"Jh" = (/obj/machinery/door/airlock{id_tag = "dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) -"Ji" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Jj" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Jk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/smes) -"Jl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Jm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Jn" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Jo" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_interior"; locked = 1; name = "Landing South Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) -"Jq" = (/turf/simulated/wall,/area/surface/outpost/main/corridor) -"Js" = (/obj/structure/table/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Jt" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Ju" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Jw" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/security) -"Jx" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"Jy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining2_airlock_control"; pixel_x = -26; pixel_y = -26; req_one_access = list(48,10); tag_exterior_door = "mining2_airlock_exterior"; tag_interior_door = "mining2_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Jz" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"JB" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter"; dir = 5},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JC" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"JD" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"JE" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"JF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"JG" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"JH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) -"JI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JK" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"JL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"JM" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"JN" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"JO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/brown{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Storage"; dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"JP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"JQ" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"JR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"JS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"JT" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"JU" = (/obj/structure/table/standard,/obj/item/weapon/soap,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"JV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"JW" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"JX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"JY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"JZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Ka" = (/turf/simulated/floor/water/shoreline{dir = 10},/area/surface/outside/ocean) -"Kb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/laundry) -"Kd" = (/turf/simulated/floor/water/shoreline/corner,/area/surface/outside/ocean) -"Ke" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/sauna) -"Kf" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Kg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Kh" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = 5; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"Ki" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"Kj" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Kk" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Kl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Km" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Ko" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Kp" = (/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Kq" = (/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Kr" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/atmos_room) -"Ks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) -"Ku" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gateway) -"Kv" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Kw" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"Kx" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Ky" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"Kz" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/obj/structure/flora/pottedplant/xmas,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"KA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"KB" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) -"KC" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KD" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) -"KE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"KF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KG" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"KH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"KI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"KK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"KL" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"KM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"KN" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Production Area"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"KO" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"KP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) -"KQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"KR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"KS" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"KU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/emergencystorage) -"KV" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/button/windowtint{id = "dorm_tint6"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"KW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"KX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"KY" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"KZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"La" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Lb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Lc" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ld" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 1; external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "rust_cooling_out"; initialize_directions = 1; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Le" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Lf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"Lg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Lh" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Li" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Lj" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ll" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"Lm" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"Ln" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Lo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Lp" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Lq" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Lr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Ls" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Lt" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/engineering{name = "Atmos Room"; req_one_access = list(12)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/tools) -"Lv" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"Lw" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) -"Lx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Ly" = (/obj/structure/fence/end{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Lz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"LA" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"LC" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) -"LD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"LE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) -"LF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint1"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"LG" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"LH" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"LI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"LJ" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"LK" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) -"LL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"LM" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"LN" = (/turf/simulated/wall,/area/surface/outpost/civilian/emergency_storage) -"LO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/vending/fitness{dir = 1},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"LP" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/flora/pottedplant/flower,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"LQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LR" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"LS" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"LT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"LU" = (/obj/structure/cable/blue,/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"LV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"LW" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LY" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"LZ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ma" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_upper) -"Mb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Mc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Me" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Mf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Mg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"Mh" = (/turf/simulated/floor/water/shoreline{dir = 5},/area/surface/outside/ocean) -"Mi" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Mj" = (/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Mk" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Ml" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Mm" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Mn" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Mo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Mp" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Mq" = (/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/structure/closet/cabinet,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Mr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ms" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Mu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"Mv" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Mx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_right) -"My" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gym"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"Mz" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"MA" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"MB" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"MC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"MD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"ME" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) -"MF" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"MG" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"MH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"MI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"MJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"MK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ML" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"MM" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MN" = (/turf/simulated/wall,/area/surface/outpost/main/laundry) -"MO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MP" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"MQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"MR" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"MT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"MU" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Outpost Laundry"},/obj/effect/floor_decal/corner/white/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"MV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"MW" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"MX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MY" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"MZ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Na" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"Nb" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Nc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Telecommunication Hub"; req_one_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/tcomm) -"Nd" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ne" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Nf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Nh" = (/obj/machinery/camera/network/civilian{c_tag = "CO - Sauna"; dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Ni" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"Nj" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Nk" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 3"; dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Nm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Nn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"No" = (/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"Np" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Nq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Nr" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ns" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Nt" = (/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Nu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm5"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Nv" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Nw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Nx" = (/obj/structure/table/steel,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ny" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"Nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) -"NA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"NB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"NC" = (/obj/effect/overlay/snow/floor,/obj/structure/ore_box,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"NE" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm4"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"NF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"NG" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_three) -"NH" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"NI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"NJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"NK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"NL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"NM" = (/obj/structure/fence/end{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"NN" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/refinery) -"NO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/janitor) -"NP" = (/obj/structure/closet/emcloset,/obj/machinery/light,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"NQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"NR" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) -"NU" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"NV" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"NW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"NX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"NY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) -"NZ" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 5; d2 = 6; icon_state = "5-6"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Oa" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Ob" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Oc" = (/obj/structure/table/bench/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"Od" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"Oe" = (/obj/machinery/door/airlock{id_tag = "dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) -"Of" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/maa) -"Oh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/closet,/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Oi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Oj" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Ok" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Ol" = (/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Om" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"On" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Oo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Op" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Oq" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Os" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"Ot" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ou" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ov" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Ow" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"Ox" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_exterior"; locked = 1; name = "Security Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(1)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) -"Oy" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"OA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"OB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage1"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) -"OC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"OD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 1"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"OE" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"OF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"OH" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "Internal Access Button"; pixel_x = -6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) -"OI" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main4_airlock_control"; pixel_x = -5; tag_exterior_door = "main4_airlock_exterior"; tag_interior_door = "main4_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"OJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"OK" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"OL" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"OM" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"ON" = (/obj/structure/table/standard,/obj/item/stack/material/steel{amount = 10},/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"OO" = (/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"OP" = (/obj/structure/showcase/sign{desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; name = "WARNING: HAIL STORMS"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"OQ" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"OR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"OS" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"OT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"OU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"OV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"OW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"OX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"OY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_left) -"OZ" = (/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Pa" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"Pb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Pc" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6; req_one_access = list(48,10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) -"Pd" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Pe" = (/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/metal{name = "Sauna"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"Pf" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"Pg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"Ph" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light{dir = 4},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Pi" = (/obj/structure/fence/cut/large,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Pj" = (/obj/structure/table/bench/marble,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Pk" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) -"Pl" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"Pm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Po" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Ps" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Pt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Pu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Pv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room) -"Pw" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"Py" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Pz" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/light/small{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"PA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 4; dir = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/machinery/light{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"PB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"PC" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"PD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"PE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"PF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"PG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"PJ" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"PK" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"PL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_three) -"PM" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"PN" = (/obj/machinery/floodlight,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"PO" = (/turf/simulated/floor/water/shoreline{dir = 1},/area/surface/outside/ocean) -"PP" = (/obj/structure/table/glass,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"PQ" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"PR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"PS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"PT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"PU" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"PV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"PW" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"PX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"PY" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/civilian/smes) -"PZ" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Search and Rescue"; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) -"Qa" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Qb" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Qd" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Qe" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Qf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"Qg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Qh" = (/obj/structure/table/steel,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Qi" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/roller{pixel_x = 8; pixel_y = 1},/obj/item/roller{pixel_x = 8; pixel_y = 9},/obj/item/roller{pixel_x = -8; pixel_y = 1},/obj/item/roller{pixel_x = -8; pixel_y = 9},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Qj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Qk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/button/remote/blast_door{id = "pen"; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ql" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Qn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Qo" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"Qp" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Qq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Qr" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Qt" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Qu" = (/obj/random/junk,/obj/random/junk,/obj/random/contraband,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Qv" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Air Tank Bypass Pump"},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Qx" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"Qy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Qz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"QA" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"QB" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/camera/network/security{c_tag = "SO - Security Checkpoint"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"QC" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"QD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 3"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"QG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 8; 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,/area/surface/outpost/security) -"QH" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"QI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable/heavyduty{d2 = 2; dir = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"QJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"QL" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"QM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"QN" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/plaque,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_upper) -"QP" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) -"QQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 1"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"QR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"QS" = (/obj/structure/fence,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"QT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"QU" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"QV" = (/obj/machinery/door/airlock{id_tag = "dorm5"; name = "Dorm 5"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) -"QW" = (/turf/simulated/wall,/area/surface/outpost/main/gateway) -"QX" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"QY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"QZ" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Ra" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main3_airlock_control"; pixel_x = -5; tag_exterior_door = "main3_airlock_exterior"; tag_interior_door = "main3_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"Rb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/recharge_station,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Rd" = (/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 6; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Re" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Rf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Rg" = (/obj/machinery/door/airlock{id_tag = "dorm6"; name = "Dorm 6"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) -"Rh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Ri" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Rj" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Rk" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"Rl" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/steel,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Rm" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Rn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Ro" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Rp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Rq" = (/obj/machinery/computer/gyrotron_control{id_tag = "Reactor Gyrotron"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/machinery/button/remote/blast_door/radproof{id = "EngineReactor"; name = "Reactor Blast Doors"; pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Rr" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outside/lake/romsele) -"Rs" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ru" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Rv" = (/obj/machinery/computer/fusion_fuel_control{id_tag = "Reactor Fuel Injectors"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Rw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"Rx" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"Ry" = (/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"Rz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"RA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"RB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 8},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"RC" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) -"RD" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/glass,/obj/item/clothing/accessory/stethoscope,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"RE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"RF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) -"RG" = (/obj/machinery/vending/loadout/accessory,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"RH" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/machinery/status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"RI" = (/obj/structure/table/steel,/obj/structure/closet/hydrant{pixel_y = -32},/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"RJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"RK" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"RL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"RN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"RO" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"RP" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"RQ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 1"; dir = 8},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"RS" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = -6},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"RT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"RU" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"RV" = (/obj/structure/table/glass,/obj/item/clothing/mask/snorkel,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"RW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"RX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"RY" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 9; icon_state = "6-9"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"RZ" = (/obj/machinery/computer/teleporter{dir = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"Sa" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Sb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/uxstorage) -"Sc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"Sd" = (/obj/machinery/vending/nifsoft_shop{dir = 4},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Se" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Sf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"Sg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Sh" = (/obj/machinery/mineral/stacking_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Si" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Sj" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Sk" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"Sm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Sn" = (/obj/machinery/light,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"So" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"Sp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Sq" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Sr" = (/obj/structure/fitness/weightlifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Ss" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Su" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Sv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Sx" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Sy" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Sz" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"SA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"SB" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"SC" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"SD" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"SF" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"SG" = (/obj/effect/landmark{name = "JoinLateSifPlains"},/obj/effect/landmark/start{name = "Outsider"},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"SH" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle/candelabra,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"SJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main) -"SK" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) -"SL" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"SO" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"SP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gym) -"SQ" = (/obj/structure/table/woodentable,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 3},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"SR" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ST" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gateway"; dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"SU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/overlay/snow/floor,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"SV" = (/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"SW" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) -"SX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SY" = (/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) -"SZ" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"Ta" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/flora/pottedplant,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Tc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Te" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_3) -"Tf" = (/obj/machinery/hyperpad/centre{map_pad_id = "pad_1_away"; map_pad_link_id = "pad_1_station"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Tg" = (/obj/structure/closet/wardrobe/xenos,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Th" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Ti" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Tj" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Tk" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/computer/timeclock/premade/east,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Tl" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) -"Tm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"To" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Tq" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/orange/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Tr" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/item/weapon/storage/fancy/markers,/obj/random/toy,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Ts" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Tt" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 2"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Tu" = (/obj/structure/table,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Tv" = (/obj/machinery/door/airlock{id_tag = "dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) -"Tw" = (/obj/structure/table/steel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/machinery/light,/obj/machinery/camera/network/mining{c_tag = "PO - Tool Storage"; dir = 4},/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Tx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Ty" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"Tz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/suit_cycler/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"TA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"TB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"TC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"TD" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"TE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"TF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/closet/toolcloset,/obj/item/weapon/storage/belt,/obj/item/weapon/storage/belt,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"TG" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"TH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"TI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"TL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"TM" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"TN" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"TO" = (/turf/simulated/wall,/area/surface/outpost/main/restroom) -"TP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"TQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"TR" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"TS" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"TT" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_interior"; locked = 1; name = "Landing North Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) -"TU" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"TV" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"TW" = (/obj/structure/closet/secure_closet/explorer,/obj/item/device/binoculars,/obj/machinery/status_display{pixel_x = -32},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"TX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"TZ" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/weapon/storage/belt/utility/full,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/head/welding,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Ua" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Ub" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{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/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Uc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Ud" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ue" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Uf" = (/obj/structure/closet,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ug" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Uh" = (/turf/simulated/wall,/area/surface/outpost/civilian/sauna) -"Ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_two) -"Uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Uk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Ul" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Um" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining1_airlock_control"; pixel_x = 26; pixel_y = -26; req_one_access = list(48); tag_exterior_door = "mining1_airlock_exterior"; tag_interior_door = "mining1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Uo" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 1; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Up" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"Uq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"Ur" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Us" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Ut" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Uu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/uxstorage) -"Uv" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Uw" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ux" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/railing,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Uy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/teleporter) -"Uz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"UA" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"UB" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"UC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"UD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"UE" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) -"UF" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"UG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"UH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"UI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"UJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"UK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"UL" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Security"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"UM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"UN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"UO" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"UP" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"UQ" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Outpost Reactor Power"; name_tag = "Outpost Reactor Power"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"UR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"US" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"UT" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"UU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/closet/crate,/obj/machinery/camera/network/mining{c_tag = "PO - Mining Stocking"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"UV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"UW" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"UZ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Va" = (/obj/machinery/computer/fusion_core_control{id_tag = "Outpost Fusion Core"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Monitoring"; name = "Engineering_Outpost"; network = list("Engineering")},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Vb" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"Vc" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Vd" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Ve" = (/obj/structure/fence/cut/medium,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Vf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Vg" = (/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"Vh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/frame/extinguisher_cabinet,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Vj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Vk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/storage) -"Vm" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"Vn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main8_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main8_airlock_exterior"; tag_interior_door = "main8_airlock_interior"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"Vo" = (/obj/machinery/mineral/unloading_machine{icon_state = "unloader-corner"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Vp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Vq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Vr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Vs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Vt" = (/obj/machinery/button/remote/blast_door/radproof{name = "Engine Monitoring Room Blast Doors"; pixel_x = 23},/obj/machinery/computer/security/engineering,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Vu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Vv" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Vw" = (/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Vy" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Vz" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"VB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"VC" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock Access"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"VD" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"VE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"VF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"VG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"VH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VI" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/two) -"VJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VK" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"VL" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"VP" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"VQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"VR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"VS" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VT" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/action_figure,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"VU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/mineral/equipment_vendor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"VV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"VY" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 1"; dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"Wa" = (/obj/machinery/scale,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Wb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gym) -"Wc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"We" = (/obj/structure/closet/crate{name = "Deuterium Storage"},/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"Wg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Wh" = (/obj/machinery/vending/nifsoft_shop{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Wi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Wj" = (/obj/machinery/vending/loadout/overwear,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Wk" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Wl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"Wm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Wn" = (/obj/effect/zone_divider,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"Wo" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"Wp" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Wq" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Wr" = (/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"Ws" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Wt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Wu" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"Wv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ww" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Wx" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"Wy" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 2"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Wz" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_interior"; locked = 1; name = "Engineering Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) -"WA" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"WB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"WC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"WD" = (/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"WE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"WG" = (/obj/structure/flora/pottedplant/xmas,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"WH" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"WI" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"WJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"WK" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) -"WL" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"WM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"WN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/danger{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"WO" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm3"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"WP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) -"WQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"WR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"WS" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"WT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"WU" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"WV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) -"WW" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"WX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"WY" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"WZ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Pool"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"Xa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Xb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Xc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Xd" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/material/ashtray/plastic,/obj/machinery/recharger,/obj/effect/floor_decal/corner/red/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Xe" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Xf" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Xg" = (/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = 22; req_one_access = list(48,43)},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"Xh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Xi" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Xj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"Xk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Xl" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"Xm" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Xn" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Xo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Xp" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Xq" = (/obj/structure/closet/toolcloset,/obj/item/device/flashlight/maglight,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Xs" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Xt" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Xu" = (/turf/simulated/wall,/area/surface/outpost/civilian/fishing) -"Xv" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"Xw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Xx" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"Xy" = (/obj/effect/floor_decal/borderfloor/cee{dir = 1},/obj/effect/floor_decal/industrial/danger/cee{dir = 1},/obj/machinery/door/window/brigdoor/westright{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastleft{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Xz" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"XA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"XB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"XC" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"XD" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"XE" = (/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"XF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"XG" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"XH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"XI" = (/obj/structure/table/steel,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"XJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"XK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"XL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"XM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"XN" = (/turf/simulated/floor/water/deep,/area/surface/outside/lake/romsele) -"XO" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) -"XP" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"XQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) -"XR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"XS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Custodial Closet"; req_one_access = list(26)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/janitor) -"XU" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"XV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"XW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"XX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"XY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"XZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security) -"Ya" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"Yb" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"Yc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/refinery) -"Yd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Ye" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Yf" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/structure/closet/emcloset,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Yg" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Yh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Yi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Yj" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Yk" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Yl" = (/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"Ym" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/industrial/outline,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Yn" = (/obj/structure/fence{dir = 8},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Yo" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Yp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"Yq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/symbol/da{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Yr" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Ys" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_y = 24},/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"Yt" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Yu" = (/obj/machinery/atmospherics/binary/pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Yv" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Yw" = (/turf/simulated/floor/water,/area/surface/outside/plains/mountains) -"Yy" = (/obj/effect/decal/remains/ribcage,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/surface/outside/plains/outpost) -"Yz" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/river/indalsalven) -"YA" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"YB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"YC" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"YD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"YE" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/table/reinforced,/obj/item/weapon/storage/box,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"YF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"YG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"YH" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"YI" = (/obj/effect/floor_decal/steeldecal/steel_decals1,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"YJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/computer/guestpass{pixel_y = 28},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"YK" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/purple/border,/obj/item/clothing/suit/caution,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"YL" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"YM" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"YO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/showers) -"YP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) -"YQ" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"YR" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"YS" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"YT" = (/obj/effect/landmark/start{name = "Search and Rescue"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"YU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"YV" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"YW" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_2) -"YX" = (/obj/machinery/space_heater,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"YZ" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Za" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Zb" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"Zc" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Zd" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Right Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Ze" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Zf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Zg" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"Zh" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Zj" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/storage) -"Zk" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Zl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_upper) -"Zm" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Zn" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Zo" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Zp" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Zq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Zt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Zu" = (/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/normal) -"Zv" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Zx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Zy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"Zz" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ZA" = (/obj/structure/closet/emcloset,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ZB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ZC" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"ZD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"ZE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ZF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"ZG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) -"ZH" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"ZI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"ZJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ZK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) -"ZL" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"ZM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"ZN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"ZO" = (/obj/machinery/conveyor{id = "mining_north"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"ZP" = (/obj/random/technology_scanner,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"ZQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"ZR" = (/obj/structure/table/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/item/weapon/backup_implanter{pixel_y = -6},/obj/item/weapon/backup_implanter{pixel_y = 6},/obj/item/weapon/backup_implanter{pixel_y = 12},/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"ZS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ZT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ZU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"ZV" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"ZW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ZX" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 4},/obj/structure/catwalk,/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"ZY" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ZZ" = (/obj/machinery/newscaster{pixel_x = -30},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"ab" = ( +/obj/structure/table/steel, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"ac" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"ad" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ae" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"af" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ag" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"ah" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"ai" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Gym"; + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"aj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"am" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"an" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"ao" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"ap" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/computer/cryopod/gateway{ + pixel_y = 30 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"aq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 4"; + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ar" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Left Wing"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"as" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"at" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"au" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"av" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"aw" = ( +/obj/machinery/vending/sol{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ax" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ay" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"az" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"aA" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/material/ashtray, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"aB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"aC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"aD" = ( +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/sauna) +"aE" = ( +/obj/structure/fence/cut/large, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"aF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"aG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"aK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"aL" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"aM" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"aN" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23; + pixel_y = 12 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/main/exploration/containment) +"aP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"aQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"aR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"aS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"aT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"aV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"aX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"aY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"aZ" = ( +/obj/structure/closet/crate, +/obj/item/weapon/tool/crowbar/red, +/obj/item/frame/light, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"ba" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/emergency_storage) +"bb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main5_airlock_control"; + pixel_x = 26; + pixel_y = -26; + tag_exterior_door = "main5_airlock_exterior"; + tag_interior_door = "main5_airlock_interior" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"bc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"be" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"bf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"bg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"bh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"bi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"bj" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_north"; + name = "mining conveyor" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"bk" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main8_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main8_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_three) +"bl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"bm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"bn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"bo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"bp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Outpost Substation"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/engineering/smes) +"bq" = ( +/obj/structure/fence/post{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"br" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"bs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"bt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"bu" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"bv" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"bw" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"bx" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/weapon/material/ashtray/plastic, +/obj/random/cigarettes, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"by" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"bz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"bC" = ( +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"bD" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"bE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/item/weapon/extinguisher/mini, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"bF" = ( +/obj/structure/table/steel, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"bG" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_three) +"bH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"bI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"bK" = ( +/obj/item/device/universal_translator, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"bL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"bM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"bN" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/storage) +"bO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_1) +"bP" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/mountains) +"bQ" = ( +/obj/structure/boxingropeenter{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"bR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"bS" = ( +/obj/structure/table/glass, +/obj/item/device/paicard, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"bT" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"bU" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"bV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"bW" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/structure/bedsheetbin, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"bX" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"bY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"bZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"ca" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"cb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"cc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"cd" = ( +/obj/structure/boxingrope{ + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"ce" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"cf" = ( +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"cg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"ch" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ci" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"cj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ck" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/security) +"cl" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"cm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cn" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"co" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/lapvend, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"cq" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"cr" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/emergencystorage) +"cs" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"cu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"cv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"cx" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"cy" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"cz" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"cB" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"cD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"cE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_lower) +"cF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"cG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"cI" = ( +/obj/machinery/button/remote/blast_door{ + id = "garage2"; + name = "Garage Shutter Control"; + pixel_x = 22 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"cJ" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/outside/plains/mountains) +"cK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "civ1_airlock_control"; + pixel_x = -26; + pixel_y = 26; + tag_exterior_door = "civ1_airlock_exterior"; + tag_interior_door = "civ1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"cM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"cO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"cP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cQ" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"cR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"cS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"cT" = ( +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"cU" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"cW" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"cX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Medical Supplies"; + req_access = null; + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"cY" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Exploration Prep"; + req_access = null; + req_one_access = list(43,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration) +"cZ" = ( +/obj/structure/snowman{ + name = "Frosty" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"da" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"db" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"dc" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"dd" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"de" = ( +/obj/machinery/vending/medical{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Search and Rescue Port" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"df" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"dg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dh" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"dk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dm" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"dn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"do" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 4"; + dir = 1; + name = "MO Right Wing - Hallway Three" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"dp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"dq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"dr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ds" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"dt" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"du" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_4) +"dv" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"dw" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/item/weapon/storage/box/nifsofts_mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"dy" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_6) +"dA" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"dB" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint2" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "sauna_tint2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"dE" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Outpost Parallel - Main 2"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 100 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"dF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"dG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/laundry) +"dH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"dI" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"dJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"dK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"dN" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dP" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/smes) +"dQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room Internal Access"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"dR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"dS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"dT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"dW" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/dice/d20, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"dY" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"dZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"ea" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"eb" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"ec" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ed" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"ef" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 6"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"eh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/emergency_storage/one) +"ej" = ( +/obj/machinery/vending/loadout/loadout_misc, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Laundry 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ek" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"el" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"em" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"en" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"eo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ep" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"eq" = ( +/obj/structure/table/glass, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"er" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"es" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"et" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eu" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/tools) +"ev" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"ew" = ( +/obj/machinery/space_heater, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ex" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"ey" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"ez" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eB" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"eC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"eD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/vending/giftvendor, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eE" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"eF" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"eG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"eH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"eI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"eJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"eL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eM" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"eN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"eO" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"eP" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main) +"eQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eR" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"eS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"eT" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"eU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"eV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"eW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"eX" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"eY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"eZ" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"fa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"fb" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"fc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost SMES Room"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"fd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"fe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ff" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/surface/outside/plains/normal; + base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; + landmark_tag = "outpost_nw"; + name = "Northwest Outpost Perimiter" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"fg" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/storage/box/wormcan/sickly{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/wormcan/sickly{ + pixel_x = 3 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Fishing 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"fj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fl" = ( +/obj/item/weapon/banner/virgov, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"fm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"fn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"fo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"fp" = ( +/turf/simulated/floor/water/shoreline, +/area/surface/outside/ocean) +"fq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"fr" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"fs" = ( +/obj/structure/table/glass, +/obj/item/clothing/shoes/swimmingfins, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ft" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"fu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"fv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"fw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fx" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"fy" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"fz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"fA" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"fB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"fC" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"fD" = ( +/obj/machinery/mineral/input, +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_external" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"fE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/outpost/mining_main/exterior) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"fG" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"fH" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 3"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"fI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Airlock"; + dir = 9; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"fJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"fK" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"fL" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"fM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"fN" = ( +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"fO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"fP" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "sec1_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = 26; + req_one_access = list(1) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec1_airlock_interior"; + locked = 1; + name = "Security Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/security) +"fQ" = ( +/turf/simulated/wall, +/area/surface/outside/path/plains) +"fS" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"fT" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main3_airlock_control"; + name = "External Access Button" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"fU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"fV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"fY" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"fZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ga" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"gb" = ( +/turf/simulated/floor/reinforced, +/area/surface/outpost/main/exploration/containment) +"gc" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"gd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ge" = ( +/obj/item/clothing/suit/caution, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"gf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"gg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"gj" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/search_and_rescue) +"gk" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/left_upper) +"gl" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"gm" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"go" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"gp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"gq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"gr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"gs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"gt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"gu" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"gw" = ( +/obj/machinery/fusion_fuel_compressor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Fuel Storage"; + dir = 6; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"gx" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"gy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1438; + id = "rust_cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"gz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"gB" = ( +/obj/machinery/button/windowtint{ + id = "sauna_tint1"; + pixel_x = -5; + pixel_y = 22 + }, +/obj/machinery/button/windowtint{ + id = "sauna_tint2"; + pixel_x = 6; + pixel_y = 22 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"gC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"gD" = ( +/turf/simulated/floor/water/shoreline{ + dir = 9 + }, +/area/surface/outside/ocean) +"gE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"gG" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/mountains) +"gH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"gI" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"gJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"gK" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_left) +"gL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"gM" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"gN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"gO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"gP" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"gQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"gR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"gS" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/industrial/outline, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"gT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"gV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"gW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"gX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"gZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ha" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"hc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_6) +"hd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"he" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 1"; + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"hf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"hg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"hh" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = newlist(); + req_one_access = list(43,67) + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"hi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"hk" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"hl" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main7_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main7_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_two) +"hm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/fitness/punching_bag/clown, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"hn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ho" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"hq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"hr" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "civ2_airlock_control"; + name = "Internal Access Button"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ2_airlock_interior"; + locked = 1; + name = "Civilian Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/sauna) +"hs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Airlock Access 2" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"ht" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"hu" = ( +/obj/machinery/disposal, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"hv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"hw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"hx" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"hy" = ( +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Shuttle Landing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"hA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/camera/network/security{ + c_tag = "SO - Airlock Access"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"hB" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"hC" = ( +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"hD" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"hE" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"hF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hG" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"hH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"hI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"hJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"hK" = ( +/turf/simulated/floor/outdoors/snow, +/area/surface/outside/plains/outpost) +"hL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"hM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"hN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"hO" = ( +/turf/simulated/floor/water/shoreline{ + dir = 8 + }, +/area/surface/outside/ocean) +"hP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/symbol/lo{ + pixel_x = -32 + }, +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"hR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Tool Storage"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"hT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"hU" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"hV" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"hW" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"hX" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"hY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"hZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ib" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/emergency_storage/two) +"ic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_three) +"id" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ie" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"if" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"ig" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"ih" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/item/weapon/pickaxe, +/obj/item/device/gps/mining, +/obj/item/clothing/head/hardhat/orange, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ii" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"ij" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"il" = ( +/obj/structure/fence/corner, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"im" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"in" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ip" = ( +/obj/effect/shuttle_landmark{ + landmark_tag = "response_ship_planet"; + name = "Sif Surface East" + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"iq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"is" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"it" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"iu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"iv" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"iw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ix" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"iy" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"iz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"iA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"iB" = ( +/obj/effect/overlay/snow/floor/pointy, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"iC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"iD" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"iE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"iF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/plains/normal) +"iG" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"iH" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"iI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"iJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/animal/passive/mouse/mining, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"iK" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"iL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/grille, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"iM" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_one) +"iN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"iO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iP" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/pointy, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"iQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"iR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"iS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "rustengine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"iU" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "ENG_Outpost_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "ENG_Outpost_airlock_exterior"; + tag_interior_door = "ENG_Outpost_airlock_interior" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"iV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"iW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"iX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"iZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"ja" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"jb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"jc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"jd" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"je" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_engineering{ + name = "Reactor Monitoring Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/engineering/monitoring) +"jf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"jg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"ji" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"jj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"jk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"jl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"jm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jn" = ( +/obj/item/stack/material/wood, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"jo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"jr" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"js" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"jt" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ju" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining2_airlock_exterior"; + locked = 1; + name = "Mining Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining2_airlock_control"; + name = "External Access Button"; + pixel_x = -26; + req_one_access = list(48,10) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/tools) +"jv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"jw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/mask/gas, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"jx" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_north) +"jy" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "sec1_airlock_control"; + pixel_x = 26; + pixel_y = 26; + req_one_access = list(1); + tag_exterior_door = "sec1_airlock_exterior"; + tag_interior_door = "sec1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"jz" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"jA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter Hallway" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jC" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"jD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jE" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"jF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jH" = ( +/obj/structure/sign/warning/caution{ + desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; + name = "\improper WARNING: NO ACCESS" + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"jI" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"jJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"jK" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -11 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"jL" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"jM" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"jN" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"jO" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"jQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jR" = ( +/obj/machinery/vending/foodasian{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"jT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"jU" = ( +/obj/item/weapon/stock_parts/motor, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"jV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"jW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"jX" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"jY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"jZ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ka" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Fauna Containment"; + req_one_access = list(1,43) + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"kc" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ke" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"kf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"kg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"kh" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"ki" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"kj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"kk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/standard, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/gloves/boxing/blue, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"kl" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"km" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"kn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/mining_scanner, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ko" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"kp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"kq" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/matches, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"ks" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"ku" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter Hallway"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kv" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"kw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"kx" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_right) +"ky" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"kz" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"kA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kB" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"kC" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main7_airlock_control"; + name = "Internal Access Button"; + pixel_x = 6; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main7_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_two) +"kD" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"kE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -26 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kF" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"kG" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"kI" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/tool, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Main Outpost"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"kJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"kK" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/search_and_rescue) +"kL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/smes) +"kM" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"kN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"kO" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kP" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"kQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"kR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"kS" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"kU" = ( +/obj/machinery/mineral/input, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"kV" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"kW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "Teleporter Access"; + req_access = newlist(); + req_one_access = list(17) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"kX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/heater/sauna{ + dir = 8; + icon_state = "heater_1"; + use_power = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"kY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"kZ" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"la" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lb" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"lc" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"ld" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_1) +"le" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"lf" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"lg" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 3" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"li" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"lj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main) +"lk" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Pool 2"; + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"lm" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main8_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main8_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_three) +"ln" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lp" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"lq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"lr" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 2"; + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ls" = ( +/obj/machinery/vending/loadout, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"lt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"lu" = ( +/obj/item/clothing/head/hardhat/orange, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"lv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lw" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"lx" = ( +/obj/structure/table/marble, +/obj/item/device/starcaster_news, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ly" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"lz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"lA" = ( +/turf/simulated/wall/dungeon{ + icon = 'icons/obj/doors/shuttledoors.dmi'; + icon_state = "door_locked"; + name = "Wall Gate" + }, +/area/surface/outpost/wall) +"lB" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"lC" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + rad_resistance = 150 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lD" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"lE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"lF" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lG" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"lH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lI" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"lK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"lL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"lM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lP" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/cave) +"lQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"lR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"lS" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"lT" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"lU" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"lV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/main_outpost{ + c_tag = "ATV Garage 2"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"lW" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/atmos_room) +"lX" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Outpost Parallel - Main 1"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 750000 + }, +/obj/structure/cable, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lY" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"lZ" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"ma" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"mb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"mc" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_two) +"md" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"mf" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"mg" = ( +/turf/simulated/wall/log_sif, +/area/surface/outpost/civilian/smes) +"mh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"mi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"mj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"mk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"ml" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"mm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"mn" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/obj/structure/boxingrope{ + dir = 4 + }, +/obj/structure/boxingrope{ + dir = 6 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"mo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"mp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"mq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"mr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"ms" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"mt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"mu" = ( +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"mv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"mw" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"mx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/pilot, +/obj/item/device/cataloguer/compact, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"my" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"mz" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/syndie, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"mA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"mB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"mC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"mD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"mE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"mF" = ( +/obj/machinery/vending/fishing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mG" = ( +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"mI" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"mJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/exploration/containment) +"mK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"mL" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/light, +/obj/item/device/communicator, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"mM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"mN" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"mP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"mQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"mR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"mS" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ1_airlock_exterior"; + locked = 1; + name = "Civilian Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "civ1_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/fishing) +"mT" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"mU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"mV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"mW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret/industrial/teleport_defense, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/teleporter) +"mX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"mY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "SUBS - Eng Outpost"; + dir = 4; + name = "Engineering_Outpost"; + network = list("Engineering Outpost") + }, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"na" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nc" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"nd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"ne" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/shoreline{ + dir = 8 + }, +/area/surface/outside/ocean) +"nf" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Auxiliary Room"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ng" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"nh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ni" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"nj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"nm" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = -4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Hallway 1" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"nn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"no" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"np" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"nq" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"nr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ns" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"nt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"nv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"nw" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"nx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"ny" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"nz" = ( +/obj/effect/floor_decal/borderfloor/cee, +/obj/effect/floor_decal/industrial/danger/cee, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Containment Pen"; + req_access = newlist(); + req_one_access = list(43,1) + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Containment Pen"; + req_access = newlist(); + req_one_access = list(43,1) + }, +/obj/machinery/door/blast/regular/open{ + id = "pen"; + name = "Containment Lockdown Blast Doors" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"nA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"nB" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"nC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"nD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nE" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"nF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"nG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"nH" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"nI" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/smes) +"nJ" = ( +/obj/structure/table/rack/shelf/steel, +/obj/fiftyspawner/phoronglass, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/steel, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"nK" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"nL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"nM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"nN" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"nO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"nP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"nQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"nR" = ( +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Engineering Outpost"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/obj/structure/cable/blue, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"nS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"nT" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/reactor_smes) +"nU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"nV" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/fishing) +"nW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"nX" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"nY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"nZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"oa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"ob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/main_outpost{ + c_tag = "ATV Garage 1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"od" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"oe" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"of" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"og" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oh" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"oi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"oj" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"ok" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ol" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"om" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/clothing/mask/gas/half, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"on" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oo" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/weapon/pickaxe, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"op" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"oq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"os" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/random/soap, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"ot" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ou" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"ow" = ( +/obj/structure/flora/pottedplant/xmas, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"ox" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oy" = ( +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"oz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"oA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"oC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"oD" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/monitoring) +"oE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"oF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/machinery/computer/timeclock/premade/north, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"oH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"oI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "mining1_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = -26; + req_one_access = list(48) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining1_airlock_interior"; + locked = 1; + name = "Mining Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/storage) +"oJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"oK" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"oL" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"oM" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor) +"oN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oO" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"oQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_one) +"oS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"oT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"oU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"oV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"oX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"oY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"oZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"pa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"pb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"pd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"pe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"pf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"pg" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ph" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"pj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"pl" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"pm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"pn" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 2"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"po" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"pp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pq" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"pu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pw" = ( +/obj/structure/fence/end{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"px" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"py" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"pz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/lapvend{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"pA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"pB" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"pC" = ( +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/outside/plains/mountains) +"pD" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/item/weapon/tank/oxygen{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/weapon/tank/oxygen{ + pixel_x = 1; + pixel_y = -5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"pE" = ( +/obj/structure/stasis_cage, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"pF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"pG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"pH" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"pJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/engine/quadbike{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"pK" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"pL" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"pM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"pN" = ( +/turf/simulated/wall, +/area/surface/outpost/main/search_and_rescue) +"pO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"pP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"pQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"pR" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/item/clothing/gloves/duty, +/obj/item/clothing/gloves/duty, +/obj/item/clothing/under/serviceoveralls, +/obj/item/clothing/under/serviceoveralls, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"pS" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"pT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pU" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"pV" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pW" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 1 + }, +/area/surface/outside/ocean) +"pX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pY" = ( +/obj/item/stack/flag/green{ + pixel_x = -4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"pZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"qb" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"qd" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 5; + tag_north = 2; + tag_south = 1; + tag_west = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"qe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"qf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qg" = ( +/turf/simulated/wall, +/area/surface/outpost/main/bar) +"qh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"qi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qj" = ( +/obj/machinery/computer/timeclock/premade/east, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room Access"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"ql" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"qm" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"qn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qo" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"qp" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"qq" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"qs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Auxiliary Room"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + d1 = 9; + d2 = 10; + icon_state = "9-10" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"qt" = ( +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"qu" = ( +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"qv" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"qw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost SMES Room"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"qx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"qy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"qA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"qB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"qD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"qE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"qF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"qG" = ( +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"qH" = ( +/obj/structure/table/glass, +/obj/item/weapon/inflatable_duck, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"qK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"qM" = ( +/obj/item/modular_computer/console/preset/security, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qN" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/smes) +"qO" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"qQ" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"qR" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"qS" = ( +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"qT" = ( +/turf/simulated/wall, +/area/surface/outpost/main/exploration) +"qU" = ( +/obj/machinery/conveyor_switch{ + id = "mining_external" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"qV" = ( +/turf/simulated/wall, +/area/surface/outpost/main/corridor/left_lower) +"qW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/thermoregulator, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qZ" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 2"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"ra" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"rb" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/material/lead{ + amount = 30 + }, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plasteel, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/item/stack/material/copper{ + amount = 25 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"rc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"rd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"re" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"rf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"rg" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main5_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main5_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_three) +"rh" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Construction Area" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_lower) +"ri" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"rj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/left_upper) +"rk" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"rl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"rm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"rn" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"ro" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Civilian"; + charge = 500000; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"rq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"rr" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ2_airlock_exterior"; + locked = 1; + name = "Civilian Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "civ2_airlock_control"; + name = "External Access Button"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/sauna) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ru" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"rv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"rw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ry" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"rz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"rA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"rB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"rC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"rD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/engineering/monitoring) +"rE" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"rF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"rG" = ( +/obj/machinery/vending/fitness{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"rI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration) +"rK" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"rL" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 5; + tag_west = 1; + use_power = 0 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"rM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/uxstorage) +"rN" = ( +/obj/structure/closet/lasertag/red, +/obj/item/stack/flag/red, +/obj/machinery/light, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"rO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"rP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"rQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"rR" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/tcomm) +"rT" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"rU" = ( +/obj/machinery/vending/loadout/clothing, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"rV" = ( +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"rW" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main) +"rX" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rY" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/exterior) +"rZ" = ( +/obj/structure/table/rack, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"sa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"sb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Custodial Closet"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"sc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"sd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"se" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"sf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "production1"; + name = "Production Shutters"; + pixel_x = -20; + pixel_y = -10; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main/refinery) +"sg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Outpost Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/corridor/left_lower) +"si" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_north) +"sj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"sk" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/tool, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"sl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"sm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sn" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"so" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"sp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"sq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sr" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"st" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"su" = ( +/obj/effect/floor_decal/stairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"sv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"sx" = ( +/obj/structure/closet/secure_closet/sar, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/roller/adv, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"sy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 3"; + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"sA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"sB" = ( +/obj/structure/table/marble, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"sC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"sD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "garage2"; + name = "Garage Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_one) +"sE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"sH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"sI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sK" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"sL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"sM" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"sN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"sO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"sP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall"; + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/heavyduty, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"sT" = ( +/obj/structure/table/marble, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"sU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sV" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + dir = 4; + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"sW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_5) +"sX" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"sZ" = ( +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"ta" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"tb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room East"; + dir = 4; + name = "Reactor_Room"; + network = list("Engine") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"tc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"td" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"te" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"tf" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"tg" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"th" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ti" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"tj" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/pool) +"tk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Airlock Access 1"; + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"tl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"tm" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"tn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"to" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/normal) +"tp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_south) +"tq" = ( +/obj/structure/catwalk, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"tr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ts" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"tt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"tu" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"tv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tw" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"tx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ty" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"tz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Master at Arms" + }, +/obj/machinery/door/firedoor/glass, +/obj/item/tape/engineering, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/security/maa) +"tA" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"tB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tC" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"tD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"tE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"tF" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"tG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/computer/general_air_control/supermatter_core{ + input_tag = "rust_cooling_in"; + name = "Engine Cooling Control"; + output_tag = "rust_cooling_out"; + sensors = list("rustengine_sensor"="Engine Temperature") + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"tH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"tI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"tJ" = ( +/obj/structure/boxingrope{ + dir = 8 + }, +/obj/structure/boxingrope, +/obj/structure/boxingrope{ + dir = 9; + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"tK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"tL" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + id = "Reactor Gyrotron"; + id_tag = "Reactor Gyrotron" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"tM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_two) +"tN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"tO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"tP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tQ" = ( +/obj/structure/table/bench/wooden, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"tR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"tS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tT" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"tU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/hydromagnetic_trap, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"tV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"tW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/bamboo, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"tY" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 8 + }, +/area/surface/outside/ocean) +"tZ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"ua" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/stairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"ub" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uc" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + name = "phase weapon cabinet"; + req_access = newlist(); + req_one_access = list(43,67) + }, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Exploration Prep"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"ud" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_north) +"uf" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/starcaster_news, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"ug" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"uh" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_three) +"ui" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/bar) +"uj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/turretid/stun{ + check_records = 0; + control_area = "\improper Main Outpost Teleporter"; + name = "Main Outpost Teleporter turret control"; + pixel_y = 24; + req_access = list(19) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"uk" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ul" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"um" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "dorm_tint5"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"un" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"up" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"uq" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"ur" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"us" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"ut" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Main Outpost"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"uv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/security/smes) +"uw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"ux" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"uy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"uz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"uA" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"uB" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"uC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"uD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uE" = ( +/turf/simulated/floor/water, +/area/surface/outside/lake/romsele) +"uF" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room) +"uG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"uH" = ( +/obj/structure/snowman/borg, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"uJ" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"uK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"uN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"uO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"uP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uQ" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"uR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"uS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"uT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"uU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"uV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uW" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"uX" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"uY" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"uZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"vb" = ( +/turf/simulated/wall, +/area/surface/outpost/main/showers) +"vc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Showers" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"vd" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ve" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"vf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_upper) +"vg" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security) +"vh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"vj" = ( +/obj/effect/engine_setup/pump_max, +/obj/machinery/atmospherics/binary/pump/high_power, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"vk" = ( +/obj/machinery/light, +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/obj/effect/landmark/start{ + name = "Outsider" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"vl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"vm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vn" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vo" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"vp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"vq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"vs" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"vt" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"vv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"vw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"vx" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main4_airlock_control"; + name = "External Access Button" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"vy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/standard, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/gloves/boxing, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"vz" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Production Room"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"vA" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"vB" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/mountains) +"vC" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"vD" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vE" = ( +/obj/structure/table/steel, +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_y = 32 + }, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 12 + }, +/obj/random/medical/pillbottle, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"vF" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"vG" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/obj/structure/boxingrope{ + dir = 8 + }, +/obj/structure/boxingrope{ + dir = 9 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"vH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"vI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"vJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"vK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"vO" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"vP" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vR" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"vT" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"vU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"vV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"vW" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"vY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"vZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wa" = ( +/obj/machinery/light_construct, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut/empty, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"wb" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"wc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"wd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"we" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"wf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_external" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/mining_main/refinery) +"wg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"wh" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gym) +"wi" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Long Range Teleporter Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"wm" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"wn" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random_multi/single_item/hand_tele, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"wo" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wp" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main6_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main6_airlock_control"; + name = "External Access Button"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_one) +"wq" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"wr" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ws" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_three) +"wt" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"wu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"wv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ww" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"wx" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"wy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"wz" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"wA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"wC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"wD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"wE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/structure/table/rack, +/obj/item/weapon/weldingtool, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/left_lower) +"wH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/remote/blast_door{ + id = "garage2"; + name = "Garage Shutter Control"; + pixel_x = -6; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"wI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main2_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main2_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_one) +"wJ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"wK" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "ENG_Outpost_airlock_control"; + name = "External Access Button"; + pixel_y = 26; + req_one_access = list(10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ENG_Outpost_airlock_exterior"; + locked = 1; + name = "Engineering Outpost External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/engineering/monitoring) +"wL" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"wM" = ( +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"wN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"wO" = ( +/obj/item/weapon/towel{ + color = "#00FFFF"; + name = "cyan towel"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"wP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Foyeur"; + dir = 10; + name = "Engineering Outpost"; + network = list("Engineering") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"wQ" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"wS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"wT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wU" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"wV" = ( +/obj/structure/closet/secure_closet{ + name = "hunting locker"; + req_one_access = list(1,43) + }, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/beartrap/hunting, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/jungle, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Containment Pen"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"wX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"wY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"wZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xb" = ( +/obj/machinery/vending/fishing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"xd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"xe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"xg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"xh" = ( +/turf/simulated/floor/water/shoreline{ + dir = 6 + }, +/area/surface/outside/ocean) +"xi" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/smes) +"xj" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/pointy, +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"xk" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining1_airlock_control"; + name = "External Access Button"; + pixel_y = -26; + req_one_access = list(48) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining1_airlock_exterior"; + locked = 1; + name = "Mining Outpost External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/storage) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_1) +"xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"xp" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"xq" = ( +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/path/plains) +"xr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"xs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"xt" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 3" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_three) +"xw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"xx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"xy" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room South"; + dir = 4; + name = "Reactor_Room"; + network = list("Engine") + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"xz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"xA" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"xB" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/mineral/input, +/obj/structure/sign/warning/moving_parts{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"xC" = ( +/obj/item/stack/material/wood, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"xD" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"xE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xF" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"xG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"xH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"xI" = ( +/obj/machinery/telecomms/relay/preset/southerncross/cave, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"xJ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"xK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"xL" = ( +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"xM" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/yjunction, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xN" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"xO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"xP" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"xQ" = ( +/obj/structure/fence/end, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"xR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"xS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"xT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"xU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"xV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"xW" = ( +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"xX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"xY" = ( +/obj/structure/table/glass, +/obj/item/inflatable{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/inflatable{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/inflatable{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xZ" = ( +/obj/structure/table/bench/standard, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/security/maa) +"ya" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"yb" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"yc" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"yd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"ye" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"yg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"yh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"yi" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"yj" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/plains/normal) +"yk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"yl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"ym" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"yn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"yo" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"yp" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"yr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"ys" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"yt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 9; + icon_state = "2-9" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"yu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"yv" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"yx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"yy" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"yz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"yA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 2" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"yB" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"yC" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -21 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"yD" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"yE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"yF" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"yG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"yH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"yI" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"yJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"yK" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"yL" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_5) +"yM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"yN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"yO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"yP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main1_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main1_airlock_exterior"; + tag_interior_door = "main1_airlock_interior" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"yQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main) +"yR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"yS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"yT" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"yV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"yW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"yX" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"yY" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"yZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"za" = ( +/turf/simulated/floor/water/shoreline{ + dir = 4 + }, +/area/surface/outside/ocean) +"zb" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/atmos_room) +"zc" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"zd" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"ze" = ( +/obj/machinery/telecomms/relay/preset/southerncross/skylands, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"zf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"zg" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/mountains) +"zh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"zi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"zk" = ( +/obj/machinery/mineral/unloading_machine, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"zl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"zm" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/weapon/reagent_containers/food/drinks/britcup, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"zn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zp" = ( +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"zr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zs" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"zt" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"zu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"zv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"zw" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"zx" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"zy" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"zz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"zC" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/surface/outside/plains/normal; + base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; + landmark_tag = "outpost_s"; + name = "South of Outpost" + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"zD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "dorm_tint6" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "dorm_tint6" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/dorms/dorm_6) +"zE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"zF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"zG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"zI" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Fuel Storage Room"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"zJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"zK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"zL" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"zM" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "civ1_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ1_airlock_interior"; + locked = 1; + name = "Civilian Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/fishing) +"zN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"zO" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"zP" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/clothing/shoes/galoshes, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"zQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "dorm_tint5" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "dorm_tint5" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/dorms/dorm_5) +"zS" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_4) +"zU" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"zV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"zW" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zX" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"zY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"zZ" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Aa" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_two) +"Ab" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"Ac" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ad" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Ae" = ( +/obj/machinery/light, +/obj/item/weapon/book/manual/rust_engine, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Af" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ag" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ah" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Ai" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Aj" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"Ak" = ( +/obj/effect/map_effect/portal/line/side_a, +/obj/effect/map_effect/perma_light/concentrated, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"Al" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"Am" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"An" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ao" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"Ap" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Aq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ar" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/backup_kit{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"As" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/smes) +"Au" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Av" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Aw" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Right Wing"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Ax" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Ay" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Az" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main6_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "main6_airlock_exterior"; + tag_interior_door = "main6_airlock_interior" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"AA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"AB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"AC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"AD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"AE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AF" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AG" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/blue, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"AH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"AI" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"AJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/weapon/tool/wrench, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"AK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main/refinery) +"AL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"AM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"AN" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"AO" = ( +/obj/effect/floor_decal/borderfloor/full, +/obj/effect/floor_decal/industrial/danger/full, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/shieldwallgen{ + anchored = 1; + req_access = list(1,43); + state = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"AP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/glass_jar, +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"AQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"AR" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"AT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"AU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"AV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"AW" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/tcomm) +"AX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"AY" = ( +/obj/effect/landmark/start{ + name = "Search and Rescue" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"AZ" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ba" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Bb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Bc" = ( +/obj/structure/catwalk, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Bd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Be" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Bf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Bg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Bh" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Bj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Bk" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/table/bench/steel, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Bl" = ( +/turf/simulated/wall, +/area/surface/outpost/main/emergency_storage/one) +"Bm" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_5) +"Bn" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Bo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Bp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Bq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Br" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"Bs" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Bt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor/corner, +/obj/item/weapon/extinguisher/mini, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Bu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/fitness/punching_bag/clown, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Bv" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"Bw" = ( +/obj/structure/boxingrope{ + dir = 4 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Bx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"BA" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"BB" = ( +/obj/machinery/telecomms/relay/preset/southerncross/planet, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"BC" = ( +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"BD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"BE" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"BF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"BG" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/light, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing South Airlock"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"BH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Airlock Access 1" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"BI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing North Airlock Access" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"BJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"BK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"BL" = ( +/obj/structure/table/woodentable, +/obj/item/toy/bouquet, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"BM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"BN" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/ender{ + icon_state = "1-2"; + id = "surface_cave" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"BO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"BP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"BQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"BR" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"BS" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"BT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"BU" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"BV" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"BW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"BX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"BY" = ( +/obj/structure/table/steel, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"BZ" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Cb" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main3_airlock_exterior"; + locked = 1; + name = "Landing South External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_south) +"Cc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Search and Rescue Starboard"; + dir = 8 + }, +/obj/structure/window/reinforced{ + health = 1e+006; + req_access = list(5) + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + name = "EMT Supplies"; + req_access = list(5); + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Cd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_north) +"Ce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Cf" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"Cg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Ch" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room External Access"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/monitoring) +"Ci" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/plains/mountains) +"Cj" = ( +/obj/structure/event/present, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Ck" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Cl" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/fusion_core/mapped{ + id_tag = "Outpost Fusion Core" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Cm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Cn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Co" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"Cp" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Cq" = ( +/obj/machinery/mech_recharger, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Cr" = ( +/obj/structure/closet/crate{ + name = "Tritium Storage" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/weapon/fuel_assembly/tritium, +/obj/item/weapon/fuel_assembly/tritium, +/obj/item/weapon/fuel_assembly/tritium, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"Cs" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Cu" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/auxiliary_storage) +"Cv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Cx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"Cy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 5"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Cz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"CA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"CB" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 7; + tag_north = 2; + tag_south = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"CC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"CE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/emergency_storage) +"CF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CG" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"CH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, +/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"CI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"CM" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"CN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"CO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"CP" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"CQ" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"CR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"CS" = ( +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"CT" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_one) +"CU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"CX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"CY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"CZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Da" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"Db" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Dc" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/exterior) +"Dd" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"De" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Df" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Dh" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Di" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Dj" = ( +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Dk" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 5 + }, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Fishing 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Dn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Do" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Dp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Dq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"Dr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ds" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"Dt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Du" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Dv" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_6) +"Dw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room/smes_left) +"Dz" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"DA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"DB" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"DC" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"DD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/vending/loadout/gadget, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"DE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"DG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"DH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"DJ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"DK" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"DL" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"DM" = ( +/obj/structure/closet/lasertag/blue, +/obj/item/stack/flag/blue, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"DN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"DO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"DP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"DQ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"DT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"DU" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"DW" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost SMES Room"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -11 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"DX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"DY" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"DZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ea" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Eb" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ec" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"Ed" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"Ee" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"Ef" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"Eh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ei" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Ej" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ek" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"El" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Em" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"En" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Eo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"Ep" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_one) +"Eq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"Er" = ( +/obj/machinery/telecomms/relay/preset/southerncross/wild, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"Es" = ( +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Et" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"Eu" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"Ev" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ew" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ex" = ( +/obj/effect/landmark{ + name = "bluespacerift" + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"Ey" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"Ez" = ( +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EA" = ( +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"EB" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"EC" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"EE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"EF" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/construction_area) +"EH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork/plastic{ + pixel_x = 7 + }, +/obj/item/weapon/reagent_containers/food/snacks/pastatomato, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"EI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"EJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room Internal Access"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"EK" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"EL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"EM" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"EN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"EO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"EP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"EQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/right_lower) +"ER" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"ES" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"ET" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"EV" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"EW" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"EX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"EY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/action_figure, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"EZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Fa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Fb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Fc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_north" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"Fd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Fe" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Ff" = ( +/obj/machinery/cablelayer, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Fg" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Fj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Fl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gym) +"Fm" = ( +/obj/structure/closet/secure_closet{ + name = "hunting locker"; + req_one_access = list(1,43) + }, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/beartrap/hunting, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/jungle, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Fn" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"Fo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Fp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Fq" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm6"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"Fr" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"Fs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/h_chocolate, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Ft" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Fu" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Fv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Fw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"Fy" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Laundry 2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Fz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"FA" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"FB" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"FC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"FD" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"FE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"FF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main7_airlock_control"; + pixel_x = 26; + pixel_y = -26; + tag_exterior_door = "main7_airlock_exterior"; + tag_interior_door = "main7_airlock_interior" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"FH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"FI" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/gps/security, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"FJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"FK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"FL" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_3) +"FM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"FN" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"FO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/symbol/em{ + pixel_x = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"FP" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"FQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"FR" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/pool) +"FS" = ( +/obj/structure/table/steel, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"FU" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"FV" = ( +/obj/structure/boxingrope{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"FW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"FX" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"FY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"FZ" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/structure/disposalpipe/segment, +/obj/random/powercell, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ga" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Gb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Gc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Gd" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Ge" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Gf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "civ2_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "civ2_airlock_exterior"; + tag_interior_door = "civ2_airlock_interior" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Gg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Gh" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Gi" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Left Wing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Gj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Gk" = ( +/obj/structure/snowman/spider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Gl" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Security Checkpoint" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"Gm" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Gn" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Go" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Gq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"Gr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Gs" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"Gt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Gu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Gv" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 4 + }, +/area/surface/outside/ocean) +"Gw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Gx" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Gy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Gz" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"GA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"GB" = ( +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"GC" = ( +/obj/machinery/mech_recharger, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"GD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"GE" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"GF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"GG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"GH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"GI" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"GJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_two) +"GK" = ( +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"GL" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Reactor Core"; + rad_resistance = 150; + req_access = list(11) + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"GM" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"GN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"GO" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"GP" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"GQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"GR" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"GS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"GT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Mining Storage"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/uxstorage) +"GU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"GV" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"GW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"GX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"GY" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"GZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ha" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"Hb" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/security) +"Hc" = ( +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Hd" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"He" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Hf" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"Hg" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_two) +"Hh" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_left) +"Hi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Hj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"Hk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Hl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Hm" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Hn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"Ho" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"Hp" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Hq" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Hr" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/symbol/gu{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Hs" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"Ht" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Hu" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"Hv" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Hw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_2) +"Hy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Hz" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room/smes_right) +"HA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"HB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"HC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"HD" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_one) +"HE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"HF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 6; + d2 = 8; + icon_state = "6-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"HG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"HH" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"HI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"HK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"HL" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"HM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"HN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 2"; + dir = 4; + name = "security camera" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"HO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"HP" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"HQ" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"HR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"HS" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"HU" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"HV" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"HW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"HX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"HY" = ( +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"HZ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ib" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/storage) +"Ic" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Id" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ie" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"If" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_1) +"Ig" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"Ih" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ii" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main) +"Ij" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ik" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Il" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Im" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Mining"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"In" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Ip" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/exploration) +"Iq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ir" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"Is" = ( +/obj/item/weapon/towel{ + color = "#90ee90"; + name = "green towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"It" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Iu" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Iv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Iw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ix" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"Iy" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Iz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"IA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ID" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main4_airlock_exterior"; + locked = 1; + name = "Landing North External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_north) +"IE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_3) +"IG" = ( +/obj/effect/overmap/visitable/planet/Sif, +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"IH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"II" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/search_and_rescue) +"IJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"IK" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"IM" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"IN" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Laundry" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/laundry) +"IO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"IP" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + req_one_access = null + }, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"IQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"IR" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/clothing/accessory/holster/hip, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"IS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"IT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"IU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"IV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"IW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"IX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main2_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main2_airlock_exterior"; + tag_interior_door = "main2_airlock_interior" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"IY" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + id = "production1"; + name = "Production Shutters"; + pixel_x = 22; + req_one_access = list(48) + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"IZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Ja" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Jb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Civilian"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"Jc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Jd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Teleporter"; + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Je" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Jf" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Jg" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"Jh" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_2) +"Ji" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Jj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Jk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/smes) +"Jl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Jm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Jn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Jo" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main3_airlock_interior"; + locked = 1; + name = "Landing South Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_south) +"Jp" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Jq" = ( +/turf/simulated/wall, +/area/surface/outpost/main/corridor) +"Js" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Jt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Ju" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Jv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Jw" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/security) +"Jx" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"Jy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "mining2_airlock_control"; + pixel_x = -26; + pixel_y = -26; + req_one_access = list(48,10); + tag_exterior_door = "mining2_airlock_exterior"; + tag_interior_door = "mining2_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Jz" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"JB" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter"; + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"JD" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"JE" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"JF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"JG" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"JH" = ( +/obj/structure/sign/warning/caution{ + desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; + name = "\improper WARNING: NO ACCESS" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall) +"JI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JK" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"JL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"JM" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"JN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"JO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"JP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"JQ" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"JR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"JS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"JT" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"JU" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"JV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"JW" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"JX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"JY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"JZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ka" = ( +/turf/simulated/floor/water/shoreline{ + dir = 10 + }, +/area/surface/outside/ocean) +"Kb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/laundry) +"Kd" = ( +/turf/simulated/floor/water/shoreline/corner, +/area/surface/outside/ocean) +"Ke" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/sauna) +"Kf" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Kg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Kh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"Ki" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"Kj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Kk" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Kl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Km" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Ko" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Kp" = ( +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Kq" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Kr" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room External Access"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/atmos_room) +"Ks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Kt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_south) +"Ku" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gateway) +"Kv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Kw" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"Kx" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Ky" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"Kz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"KA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"KB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall) +"KC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KD" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/security/maa) +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"KF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KG" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"KH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"KI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"KJ" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"KK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"KL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"KM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"KN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Production Area"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"KO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"KP" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/atmos_room) +"KQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"KR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"KS" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"KU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/emergencystorage) +"KV" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/button/windowtint{ + id = "dorm_tint6"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"KW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"KX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"KY" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"KZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"La" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Lc" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ld" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 1; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + frequency = 1438; + icon_state = "map_vent_in"; + id_tag = "rust_cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Le" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Lf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"Lg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Lh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Li" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Lj" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Lk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ll" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"Lm" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"Ln" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/boxingrope{ + dir = 1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Lo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Lp" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Lq" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/radproof{ + dir = 4; + rad_resistance = 150 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Lr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Ls" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Lt" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Lu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Atmos Room"; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/tools) +"Lv" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"Lw" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/monitoring) +"Lx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Ly" = ( +/obj/structure/fence/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Lz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"LA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"LC" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_right) +"LD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_one) +"LF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint1" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"LG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"LH" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"LI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"LJ" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"LK" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main6_airlock_control"; + name = "Internal Access Button"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main6_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_one) +"LL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"LM" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"LN" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/emergency_storage) +"LO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"LP" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"LQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"LS" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"LT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"LU" = ( +/obj/structure/cable/blue, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"LV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Long Range Teleporter Access" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"LW" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LY" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"LZ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ma" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/right_upper) +"Mb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Mc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Me" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Mg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"Mh" = ( +/turf/simulated/floor/water/shoreline{ + dir = 5 + }, +/area/surface/outside/ocean) +"Mi" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Mj" = ( +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Mk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Ml" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Mm" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Mn" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Mo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Mp" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Mq" = ( +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Mr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ms" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Mt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Mu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"Mv" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Mx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room/smes_right) +"My" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Gym" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"Mz" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"MA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"MB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Medical Supplies"; + req_access = null; + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"MC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"MD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/laundry) +"MF" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"MG" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"MH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"MI" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"MJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"MK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ML" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"MM" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MN" = ( +/turf/simulated/wall, +/area/surface/outpost/main/laundry) +"MO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"MQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"MR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"MS" = ( +/obj/effect/overlay/snow/floor/pointy, +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"MT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + dir = 4; + rad_resistance = 150 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"MU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Outpost Laundry" + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"MV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"MW" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -22 + }, +/obj/structure/cable/blue, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"MX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MY" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"MZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Na" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"Nb" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Nc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "Telecommunication Hub"; + req_one_access = list(61) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/tcomm) +"Nd" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ne" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Nf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Nh" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Sauna"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Ni" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"Nj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Nk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 3"; + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Nl" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Nm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Nn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"No" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"Np" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Nq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Nr" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ns" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Nt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Nu" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm5"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Nv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Nw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Nx" = ( +/obj/structure/table/steel, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ny" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_4) +"NA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"NB" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"NC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"NE" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm4"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"NF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"NG" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_three) +"NH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"NI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"NJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"NK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"NL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"NM" = ( +/obj/structure/fence/end{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"NN" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/refinery) +"NO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/janitor) +"NP" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"NQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"NR" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/exterior) +"NS" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"NU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"NV" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"NW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"NX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"NY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/smes) +"NZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 5; + d2 = 6; + icon_state = "5-6" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Oa" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ob" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Oc" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"Od" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"Oe" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_3) +"Of" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/maa) +"Oh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/closet, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Oi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Oj" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Ok" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Ol" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Om" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"On" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Oo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Op" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Oq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Os" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"Ot" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ou" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ov" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Ow" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"Ox" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec1_airlock_exterior"; + locked = 1; + name = "Security Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "sec1_airlock_control"; + name = "External Access Button"; + pixel_y = 26; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/security) +"Oy" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"OA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"OB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "garage1"; + name = "Garage Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_two) +"OC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"OD" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 1"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"OE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"OF" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"OH" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main1_airlock_control"; + name = "Internal Access Button"; + pixel_x = -6; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main1_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_two) +"OI" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main4_airlock_control"; + pixel_x = -5; + tag_exterior_door = "main4_airlock_exterior"; + tag_interior_door = "main4_airlock_interior" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main4_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"OJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"OK" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"OL" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"OM" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"ON" = ( +/obj/structure/table/standard, +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"OO" = ( +/obj/item/weapon/towel{ + color = "#FF8C00"; + name = "orange towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"OP" = ( +/obj/structure/showcase/sign{ + desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; + name = "WARNING: HAIL STORMS" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"OQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"OR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"OS" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"OT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"OU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"OV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"OW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"OX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"OY" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room/smes_left) +"OZ" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Pa" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"Pb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Pc" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "mining2_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6; + req_one_access = list(48,10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining2_airlock_interior"; + locked = 1; + name = "Mining Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/tools) +"Pd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Pe" = ( +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Sauna" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"Pf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"Pg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"Ph" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Pi" = ( +/obj/structure/fence/cut/large, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Pj" = ( +/obj/structure/table/bench/marble, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Pk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/left_upper) +"Pl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"Pm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Pn" = ( +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Po" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ps" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Pt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Pu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Pv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room) +"Pw" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"Py" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Pz" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"PA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + dir = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"PB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"PC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"PD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"PE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"PF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"PG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"PJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"PK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/closet/crate, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"PL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_three) +"PM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"PN" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"PO" = ( +/turf/simulated/floor/water/shoreline{ + dir = 1 + }, +/area/surface/outside/ocean) +"PP" = ( +/obj/structure/table/glass, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"PQ" = ( +/obj/machinery/pipedispenser, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"PR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"PS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"PT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"PU" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"PV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"PW" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"PX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"PY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/civilian/smes) +"PZ" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Search and Rescue"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/search_and_rescue) +"Qa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Qb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Qc" = ( +/obj/effect/overlay/snow/floor/pointy, +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Qd" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Qf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"Qg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Qh" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Qi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/roller{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/roller{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/roller{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/roller{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Qj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Qk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "pen"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ql" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Qm" = ( +/obj/structure/loot_pile/christmas_tree{ + desc = "A large Christmas tree heavily decorated in holiday ornaments, there are various present stacked up high. You spot your name on one of them, it's from Santaur!" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Qo" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"Qp" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Qr" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qt" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Qu" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Qv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air Tank Bypass Pump" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Qx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"Qy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Qz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"QA" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"QB" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/security{ + c_tag = "SO - Security Checkpoint"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"QC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"QD" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 3"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"QG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + 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, +/area/surface/outpost/security) +"QH" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"QI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + d2 = 2; + dir = 4; + icon_state = "0-4" + }, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"QJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"QK" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"QL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"QM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"QN" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"QO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/plaque, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_upper) +"QP" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/auxiliary_storage) +"QQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 1" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"QR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"QS" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"QT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"QU" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"QV" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Dorm 5" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_5) +"QW" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gateway) +"QX" = ( +/obj/item/weapon/stool/padded, +/obj/structure/boxingrope{ + dir = 4 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"QY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"QZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Ra" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main3_airlock_control"; + pixel_x = -5; + tag_exterior_door = "main3_airlock_exterior"; + tag_interior_door = "main3_airlock_interior" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main3_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"Rb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/recharge_station, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Rd" = ( +/obj/structure/boxingrope{ + dir = 4 + }, +/obj/structure/boxingrope, +/obj/structure/boxingrope{ + dir = 6; + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Re" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Rf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Rg" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm6"; + name = "Dorm 6" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_6) +"Rh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Ri" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Rj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Rk" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"Rl" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Rm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Rn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Ro" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Rp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/remote/blast_door{ + id = "garage1"; + name = "Garage Shutter Control"; + pixel_x = -6; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Rq" = ( +/obj/machinery/computer/gyrotron_control{ + id_tag = "Reactor Gyrotron" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door/radproof{ + id = "EngineReactor"; + name = "Reactor Blast Doors"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Rr" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outside/lake/romsele) +"Rs" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ru" = ( +/obj/machinery/vending/loadout/costume, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Rv" = ( +/obj/machinery/computer/fusion_fuel_control{ + id_tag = "Reactor Fuel Injectors" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Rw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"Rx" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing North Airlock" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"Ry" = ( +/obj/item/weapon/towel{ + color = "#b5651d"; + name = "brown towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"Rz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"RA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"RB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"RC" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main5_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main5_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_three) +"RD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/clothing/accessory/stethoscope, +/obj/item/device/defib_kit/loaded, +/obj/item/device/defib_kit/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"RE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"RF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_south) +"RG" = ( +/obj/machinery/vending/loadout/accessory, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"RH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"RI" = ( +/obj/structure/table/steel, +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"RJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"RK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"RL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"RN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"RO" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"RP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/engine/quadbike{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"RQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 1"; + dir = 8 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"RR" = ( +/obj/effect/overlay/snow/floor/pointy, +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"RS" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"RT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"RU" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"RV" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/snorkel, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"RW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"RX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"RY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 6; + d2 = 9; + icon_state = "6-9" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"RZ" = ( +/obj/machinery/computer/teleporter{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"Sa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Sb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/uxstorage) +"Sc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"Sd" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Se" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"Sg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Sh" = ( +/obj/machinery/mineral/stacking_unit_console, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Si" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Sj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Sk" = ( +/obj/effect/zone_divider, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"Sl" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Sm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Sn" = ( +/obj/machinery/light, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"So" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"Sp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Sq" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Sr" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Ss" = ( +/obj/structure/janitorialcart, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Su" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Sv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Sw" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Sx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Sy" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Sz" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"SA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"SB" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"SC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"SD" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint2" + }, +/obj/structure/window/reinforced/polarized{ + id = "sauna_tint2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"SF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"SG" = ( +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/obj/effect/landmark/start{ + name = "Outsider" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"SH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"SJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main) +"SK" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/tools) +"SL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 5"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"SO" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"SP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gym) +"SQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_y = 3 + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"SR" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ST" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Gateway"; + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"SU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/overlay/snow/floor, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"SV" = ( +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"SW" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_south) +"SX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SY" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/plains/mountains) +"SZ" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"Ta" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/flora/pottedplant, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Tc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Te" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_3) +"Tf" = ( +/obj/machinery/hyperpad/centre{ + map_pad_id = "pad_1_away"; + map_pad_link_id = "pad_1_station" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Tg" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Th" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Ti" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Tj" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Tk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/computer/timeclock/premade/east, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Tl" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room) +"Tm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"To" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Tq" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/orange/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Tr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/item/weapon/storage/fancy/markers, +/obj/random/toy, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Ts" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Tt" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Hallway 2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Tu" = ( +/obj/structure/table, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Tv" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_4) +"Tw" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/light, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Tool Storage"; + dir = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Tx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Ty" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"Tz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"TA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"TB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"TC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/secure_closet/pilot, +/obj/item/device/cataloguer/compact, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"TD" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"TE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/closet/toolcloset, +/obj/item/weapon/storage/belt, +/obj/item/weapon/storage/belt, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"TG" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"TH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"TI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"TK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"TL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"TM" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"TN" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"TO" = ( +/turf/simulated/wall, +/area/surface/outpost/main/restroom) +"TP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"TQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"TR" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"TS" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"TT" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main4_airlock_interior"; + locked = 1; + name = "Landing North Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_north) +"TU" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"TV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"TW" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/device/binoculars, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"TX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"TZ" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/industrial/outline, +/obj/item/clothing/head/welding, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Ua" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Ub" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + 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/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Uc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Ud" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ue" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Uf" = ( +/obj/structure/closet, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ug" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Uh" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/sauna) +"Ui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_two) +"Uj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Uk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Ul" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Um" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "mining1_airlock_control"; + pixel_x = 26; + pixel_y = -26; + req_one_access = list(48); + tag_exterior_door = "mining1_airlock_exterior"; + tag_interior_door = "mining1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Uo" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 1; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Up" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"Uq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"Ur" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Us" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Ut" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Uu" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/uxstorage) +"Uv" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Uw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ux" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Uy" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/teleporter) +"Uz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"UA" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"UB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"UC" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"UD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/power/hydromagnetic_trap, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"UE" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main2_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main2_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_one) +"UF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"UG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"UH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"UI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"UJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"UK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"UL" = ( +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Security"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"UM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"UN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"UO" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"UP" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"UQ" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Outpost Reactor Power"; + name_tag = "Outpost Reactor Power" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"UR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"US" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"UT" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"UU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Stocking"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"UV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"UW" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"UY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"UZ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Va" = ( +/obj/machinery/computer/fusion_core_control{ + id_tag = "Outpost Fusion Core" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Monitoring"; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Vb" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"Vc" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Vd" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Ve" = ( +/obj/structure/fence/cut/medium, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Vf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Vg" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"Vh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/frame/extinguisher_cabinet, +/obj/item/weapon/extinguisher, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Vi" = ( +/obj/machinery/light/floortube{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Vj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Vk" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/storage) +"Vm" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"Vn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main8_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main8_airlock_exterior"; + tag_interior_door = "main8_airlock_interior" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"Vo" = ( +/obj/machinery/mineral/unloading_machine{ + icon_state = "unloader-corner" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Vp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Vq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Vs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Vt" = ( +/obj/machinery/button/remote/blast_door/radproof{ + name = "Engine Monitoring Room Blast Doors"; + pixel_x = 23 + }, +/obj/machinery/computer/security/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Vu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Vv" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Vw" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Vy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Vz" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"VA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"VB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"VC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing South Airlock Access"; + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"VD" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"VE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"VF" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"VG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"VH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VI" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/emergency_storage/two) +"VJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"VL" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"VM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"VP" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"VQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"VR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"VS" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VT" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/action_figure, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"VU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/mineral/equipment_vendor{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"VV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"VY" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Pool 1"; + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"Wa" = ( +/obj/machinery/scale, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Wb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gym) +"Wc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"We" = ( +/obj/structure/closet/crate{ + name = "Deuterium Storage" + }, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"Wg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Wh" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Wi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Wj" = ( +/obj/machinery/vending/loadout/overwear, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Wk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Wl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"Wm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Wn" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"Wo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Wp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Wq" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Wr" = ( +/obj/machinery/door/firedoor/glass, +/obj/item/tape/engineering, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"Ws" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Wu" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"Wv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ww" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Wx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"Wy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Airlock Access 2"; + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Wz" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "ENG_Outpost_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = 26; + req_one_access = list(10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ENG_Outpost_airlock_interior"; + locked = 1; + name = "Engineering Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/engineering/monitoring) +"WA" = ( +/obj/structure/closet/secure_closet/sar, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/roller/adv, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"WB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"WC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"WD" = ( +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"WE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"WG" = ( +/obj/structure/flora/pottedplant/xmas, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"WH" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"WI" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"WJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"WK" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main1_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main1_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_two) +"WL" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"WM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"WN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"WO" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm3"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"WP" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/normal) +"WQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"WR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"WS" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"WT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"WU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"WV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/pool) +"WW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"WX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"WY" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"WZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Pool" + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"Xa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Xb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Xc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Xd" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/material/ashtray/plastic, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Xe" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Xf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Xg" = ( +/obj/machinery/button/remote/blast_door{ + id = "garage1"; + name = "Garage Shutter Control"; + pixel_x = 22; + req_one_access = list(48,43) + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"Xh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Xi" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Xj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"Xk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Xl" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"Xm" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Xn" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Xo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Outpost Access" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Xp" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Xq" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Xr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Xs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Xt" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Xu" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/fishing) +"Xv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"Xw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Xx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"Xy" = ( +/obj/effect/floor_decal/borderfloor/cee{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/cee{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Containment Pen"; + req_one_access = list(43,1) + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Containment Pen"; + req_one_access = list(43,1) + }, +/obj/machinery/door/blast/regular/open{ + id = "pen"; + name = "Containment Lockdown Blast Doors" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Xz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"XA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"XB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"XC" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"XD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"XE" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"XF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"XG" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"XH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"XI" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"XJ" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"XK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"XL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"XM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"XN" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/lake/romsele) +"XO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/search_and_rescue) +"XP" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"XQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/tools) +"XR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"XS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_one_access = list(26) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/janitor) +"XU" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"XV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"XW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"XX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"XY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"XZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"Ya" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"Yb" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"Yc" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/refinery) +"Yd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Ye" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Yf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Yg" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Yh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Yi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Yj" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Yk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Yl" = ( +/obj/item/weapon/towel{ + color = "#800080"; + name = "purple towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"Ym" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/industrial/outline, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Yn" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Yo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Yp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"Yq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/symbol/da{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Yr" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Ys" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"Yt" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Yu" = ( +/obj/machinery/atmospherics/binary/pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Yv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Yw" = ( +/turf/simulated/floor/water, +/area/surface/outside/plains/mountains) +"Yy" = ( +/obj/effect/decal/remains/ribcage, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/plains/outpost) +"Yz" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/river/indalsalven) +"YA" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"YB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"YC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"YD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"YE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"YF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"YG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"YH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"YI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals1, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"YJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"YK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/purple/border, +/obj/item/clothing/suit/caution, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"YL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"YM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"YO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/showers) +"YP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/laundry) +"YQ" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"YR" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"YS" = ( +/obj/machinery/vending/fitness{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"YT" = ( +/obj/effect/landmark/start{ + name = "Search and Rescue" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"YU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"YV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"YW" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_2) +"YX" = ( +/obj/machinery/space_heater, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"YZ" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Za" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Zb" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"Zc" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Zd" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Right Wing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Ze" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Zf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Zg" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"Zh" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Zj" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/storage) +"Zk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Zl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_upper) +"Zm" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Zn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Zo" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Zp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Zq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"Zr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Zs" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Zt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Zu" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/normal) +"Zv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Zx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Zy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Zz" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ZA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ZB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ZC" = ( +/obj/item/weapon/stool/padded, +/obj/structure/boxingrope{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"ZD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"ZE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ZF" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"ZG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/pool) +"ZH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"ZI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"ZJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ZK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/smes) +"ZL" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"ZM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"ZN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"ZO" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"ZP" = ( +/obj/random/technology_scanner, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"ZQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"ZR" = ( +/obj/structure/table/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -6 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 6 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 12 + }, +/obj/item/weapon/backup_implanter, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"ZS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ZT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ZU" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"ZV" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"ZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ZX" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/random/powercell, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"ZY" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ZZ" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) (1,1,1) = {" -VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgDseMNRAkAkAkNReMeMVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgOKeMeMCiCiCieMeMeMVgVgVgVgVgVgVg -VgpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYwMwMwMrYpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEWnXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYTSwMyHrYDcDcDcpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahabThahahahahahahahahahahahahahahahahahapCpCpCpChahahahahahahapCpCpCpChahapCpCpCpCBNfLwMfLFczkZODchahahahahahahahahahapCpCpCpCpCpCpCpCpCpCpCpChahahahapCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpChahahahahahahakygxgxgxbjkieBDchahahahahahahahahahahapCpCpCpCpCpCpCpCpCpChahahahahahapCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaguhahahaguwJguhahahahahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahayORKRKRKaQfEEuDchahahahahahahahahahahahahapCpCpCpCpCpChahahahahahahahahapCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahatfsoIAVrIAVrEPVrIAIAofhahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxDcDcDcDchahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaMnDGsodXsodXMDdXsodXwyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahaeaUGwywywywyKEwywywywyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahapAdXwywywywyKEwywywyYFhaguhahaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahaeaUGwywywywyKEwywywyYFhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahapAdXwywywywyKEwywywyYFhahaguguhahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwzwzwGRzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwhahahahahahahaeaUGwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahapAdXwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahaeaUGDGrnjqpAJZpAjqpAUGhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEbPXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahahahaTohaPshahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahagucJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYYwXEXEXEXEbPbPXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahazZypTDnHDhnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHLyhahahaBQgxgxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHyphVpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEYwYwYwXEXEbPbPbPbPbPXEXEVg -VgXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwhahahahahaEbguulPomPhahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaOapCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxLxLxLpWbPbPbPbPbPbPXEXEVg -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwhahahahahaEbhaEDtNhahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLzabPbPbPbPKdpWXEXEgG -VgXEXEXEXEXEXEXEXEXEzwzwzwzwXEXEXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwhahahahahaPiQPEjEjQPCuQPQPQPQPQPTsRTJVRTAxhaKPKPKPKPzbhahahahahahahahahahahahahahahahahahahahahahahabUhaFXhvgxgxgxhaFXhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPKdxhxLxLxLzabPbPbPKdxhKafpfpgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwhahahahahaEbQPvjssyhisisgdvdaVQPSvlJalalqzKPKPZAqydUKPSbSbSbhahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLKafpfpfpxhxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPryCYSxhPmbLjLjmhQPghUcRTRTGSKPavmEuPyBKPoLmsSbSbSbhayQljljljyQhahahahahaFKFKFKFKwLwLwLwLwLwLMLgxgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPprlOqXdLhRRsTjqWQPwuOXalalqzKPavxrhZyBKPGzcnnOuQSbyQyQIirWIiyQFKFKFKFKFKFKagLYGaXFXFXFkVXFXFNNgxgxgxgxgxXgGJGJGJGJGJhahahahahahagjxGxGxGxGgjgjgjKuhahahahahamJmJWMWMWMmJmJhahahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPssqqlgMYioBplodBQPgLQPiLiLiLKPavxrhZyBKPElZNMbiJrMNfYJhMhMhgihYcxBDeimSjtZvAVofDwfwfwfwfwfwffJgxgxgxgxgxHPOBRpBeVRGJhahahahahagjgjkKIIQiegSqDjTUKuKuydydydKumJpEpEMzbKAPmJmJhahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPVOqXUdBpQydOELfdcAaNQPPwPwPwKPyIqdjYasKPFuLtmjJOGTOvJLviviiWIYYcsfzuzuFKzukSFKFKwLwLwLwLqUwLxFgxgxgxgxgxHPOBBepJBeDohahahahagjgjvEBRYjInfycXrvKYQWeEJMJMJMRHmJpEpEOUvZBxAOmJmJmJmJhahaxQgupCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPupKQaIciNqHFchuYLRPzQPPwPwPwAnfvCBjYKkKPUuUuUuUuUuolkgAXAXWtqDsAAHiNusZgzuxDFKyyyyyyyyyyyyyyXegxgxgxgxgxHPOBnlBeocGJhahahahagjdewQrztcYTfybsXnqlQWSTqQEAqQPJmJwEmqjVxpZDPghIgbaOmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLxLIggG -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPBprLnfhFqfvCRYVynPdkQPddPwPwKPKPdTQvfZKPeXuqcrTisYORbhAXAXGrxVQTqaDEKHvzIyfSFKHryyyyyyyyyyyyXegxgxgxhagxnqGJGJGJGJGJhahahahaswWAwQFMZRGncCRDggOpQWXlCoCoCouLmJmJwVbnJDnxXygbgbgbmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLIgIgIggG -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYQedYJKdYuOdYdYqsIbIbIbIbIbiGKPIhdhYuPQKPOQtmKUekMvkMzBkMsaBDqDhDdJDqIVYIzuDKFKyyyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswWAwQuNCGlRAYMBzNCcKyDamOmOylaoapmJFmbnMznxnzgbgbgbmJhahabThapCpCzgzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIggG -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYgyPVPVPVLddYNZQlIbCrgwWeIbQYKPpgRoRoHcKPauQNcrPKUUbEWmVUyzeYsrYcAKzuzuShzukSFKNCyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswsxMmJctgKZnvbXMeAJKyRbuWSgKsERTgmJzEcLdjQkPghIgbaOmJhahabThahahahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJvsUDOjoUevudytzIaMtFtqIbzjAEeHzvmmFfKPKPKPXQeueueueuePKNvpSJlPeOtTzOgmqvkUVkrHrHVkyyyyyypVQdExgxgxhaOPhahahaGJyMyMGJGJGJGJGJGJpNpNpdPZXOpdpdpdQWZvPEBgquOTYfmJLcGZLhqFAOuhuhuhuhuhuhiIIoAthahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKzJoUClVGNWUCuBgWIbIbIbIbIblWKPObVuITMonNpyiDXQQhaGtVeupYIlcvdwbNbNVkVkVkVkVkVkZjUTVkvopVvPQdgxgxgxgxhahahahaVFGJYrHgGJsNIKjwOdGJGCEiCqiYCNTZYmgSQWKyKyLVYpwlKymJmJkbIxmJmJuhlhyxlThwuhNGyFAtlYhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJIWtUbIoUevXiMkXmnXnTeVHflWARoOoOzhoOoOoOoOXQfalQphiAleBdLIFBhkTzsnnmbgkndNsCBqtkdZVmXegxgxgxgxgxgxgxgxgxgxZHUzpnpUEIaKHwyYbMEItxafafyGgXHkHkHkEatSjfdrxMWgNsPGjfcPqKetdnvlzFWXBXlpDICZfHDXoqhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYIUuGuGuGiTJKtbUavtUQEJQfWBKrAZiyiyoNAfAFHvuKLusHpTEOBKrwNpRnUYLbnGRNRNRNhbUmoIotgQxkYAXegxgxgxgxgxgxgxgxgxgxHPWKWijsOHyPSeLrPMtMXUefqIjJpZHikEkEkAgtVfSXQOSXSDgZgZcMKMKMSLPLSNWoQLbbrgZyigRCyyzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYGLsVsVsVJKdYbtwYfcdYdYvHpmlWrbnJlUFZKPImubMWSKsksdYihSzHZTaLqAdtTcaLaLaLZTFiVkcOcOVkCQQdgxgxgxgxgxgxgxgxgxgxhWGJUsUsGJUsUsUsGJGJqTqTWQcYrIWQqTqTqTqTHGGeMfEMmHkGmLLHUyUyUyuhuhuhuhyuAtuMuMAtlYzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwffzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYnuUotLUopQizKjdYGIdEdYlWlWlWKPKPKPoAKPKPKPKPXQTwYgJyeuTtYZVdFPVkdgrmwwZkyVfYVkKSZJDBurhagxgxgxgxgxgxgxhahahaLXLWLWLWLWvnLWpjedooZLbHEXUrkNvhcUhhucqTeQJYWJDOMaUyUyUyUyDuwnAWuuBBAWhahabThahazgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYjKWWlaOEaXmfCHqwiHPAQIDBDBDBDBDBoXUpgRvnvnpjXQXQXQPcXQVkVkVkVkVkVkcOcOVkcOcOVkwchahagxgxgxgxgxgxgxgxhahahahaLohahahahahahaPCedomqmNITRxAVslLahahhdWQsXzrAUUFvWUyRZESiiWNGHNcEoxIAWhahawJguzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYxyXmTVXmXmCMbZdYDWlXdYyyyyyyyyyyyyyyyyyyyyZEvnpjnpppqxmIhqKSZJZJZJZJDBZJDBZJDBelhahagxgxgxftZFRXAlRXNVApApBjhHhahahahahahaPCedIRqmNIEKJsuJKpKpwAUSWQZhJtSmUFzWUyPXmWHBkzdcrStKnwAWhahawJguzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKlClCJKlClCdYdQJKdYdYwYyyEBEBEBEByyEByyyyEByyEBLonpltWyrAhqwchahahahahahahahahahagxgxgxhahaPCFUIDvxIDFUhahahahahahahahahahaLoIpTWqmNIArNxXreTKTKTRmWQDdOmtvUFwmUyKvXwcuCgSRAWtKzeAWhahawJguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYRqRvVatGVtcabVfucayyyyQHhahahahahahahahahahahaLoXQjuIEXQXQwchahahahahahahahagxgxgxgxgxhahaPCeSFbBIyrBThahahahahahahahahahaPCIpIpRItnAgiROofzNopDRSqTrkuCBoUFWhUyJdeGnCUyUyUydRErAWhahaNMguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSMTiEoPkwdqgELqnYqkcayyyyyyyyWLhahahahahahahahaftitGPHohYLlDBelhahahahahagxgxgxgxgxgxhahahahaLoeSgqCdItBThahahahahahahahahahaANpjIpIpmxTCKTKTEvkxkxkxkxkxxaICezMaUyUyUykWUycoMaMaAWAWhahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSSOPyrfjMyCAecaChyXcaoDVqVqoDOSgxhahahahagxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahaIdBjNJeSlnjxnMBThahahahahahahahahahahaZEpjIpIpgagagagaHzAwVTjOkxNksqtPHMwZFvYqXkujFazivfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQScacacacajeyXcaJvcgWIoDXXfIoDplgxgxgxgxgxgxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahahahaPCFUFUFUTTOITTFUFUFUhahahahahahahahahahaANLWLWLWvnLWFYUeBcmdtuMxsEtBVvZtbinWcmdoVfBoWcvfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbhahaoDTNNKCerQQnyDiUWzmlhLwKlcgxgxgxhahagxgxgxoEgxgxhahahahahahahahahahahagxgxhabUhahahaLoeSTmHRmtHOIHzqRxBThahahabUhahahahahahahahahahahahakPHzZdzdZoLCtWSmDOBlBlehBlBlHGgZYkvfhahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaPiguhaZKZKbpNYTFSABtYVoDrDCDoDOSgxgxgxgxgxgxgxgxoEgxhahahahahahahahahahahahagxgxhaguhahahaPCeSVbQtUKQtQMQtzXBThahahahahahahahahahahahahahahahaJWHzkxkxkxkxFQjtNABlRkaaveBlEfbxbuMahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaZKmYBvZKGOyDDLoDoDQjQjoDlcgxgxgxgxgxgxgxgxoEhahahaguhahahahahauHhauHgxgxgxhahahahahaLoeSoeQtUKDHQMQtsMBThahahahahahahahahahahahahahahahahaYOVcsjHHvbamMKgOBloBUWMGBlwhwhwhWbWbWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbguhaZKZXnRZKDlwPPhoDftLWLWvnLWHZvnHEzKUHHEravnhHhahahahahahahahahahaGkhahagxgxhahaguhahaLoFUdvFEmrxWvVVBPTFUhahahahahahahahahahahahahahahahahaYOwimuZpdKGQcQTkBlBlBlBlBlvGvRLnvRmnWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSguhaZKQxZKZKoDoDoDLwLohKhKhKhKPCiMiMScwpiMLQhahahahahahahahahahahahahahahagxhahahahahahaPCFUGqGqueFUsiGqGqFUhahahahahahahahahahahahahahahahahaYOVcceHHvbrigHwWwhlfKxCAzlZCMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaAskLkLvnbcLWLWEUhKhKhKhKPCpOFnrEmDrPLQhahahahahahahahahahahahagxgxgxgxgxgxgxgxhahaPCoMeDKqqhxRfwKqNroMhahahahahahahahahahahabUhahahahaYOYOvbvcvbvbPSPuEwlqfUReKmUxFVMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCpOEpoyoSrPLQhahaguhahahahahahahahagxgxgxOcabOcgxgxgxhahaPCoMDbHmLTdHvmHmxdoMhahahahahahahahahahahahahahahahaYOVzohnsosvbbRJCXcMyxlwkQAfNbQMjMjMjQXWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaVehahahahahahahabThahahahahahahaLoiMiMNiLKiMLohahaguhahahabUhahahahagxhagxOcabOcgxgxhacZhaLoxzEzHmvKVMHmHmzptEhahaoMuxoMuxoMuxoMhahahahahahahaYOreHqPjgpvbHNMKntSPhoHlfrYStJcdcdcdRdWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCiMFrLMAzrPLQhaguhahahahahahahahahahahagxgxgxgxgxgxhahahaPCxzBYHmvKVMHmHmbFinhahaoMVweoOtYLpqoMhahahahahahahaYOKOHqkDFdvbBWfFgOSPgMwoqenZkJvykkBuhmWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahaguQShahahahahahahabThahahahahahahaLoiMtdTAtIrPLohahahahahahahahahahahahahahahahahahahahaguguLoxzuzHmvKVMHmHmvQtEhahaoMJBTITfoxBVoMhahahahahahahaYOreHqepgpvbsJIqgOSPgMIZBnBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaftvnBjvnmRvnvnBjBjBjBjBjNJiMJgHspPrPLQhahahahahahahahahahahahahahahahahahahahahaguPCoMDbHmvKVMHmHmEToMhahaoMGBiXyKogrXoMhahahahahahaguYOUfXAazesqPsvWRgOSPccIZBCSrBCSyBCOMBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLyLyLyLyLTeTeTeTebObObOiMhejTuTiMZEvnBjBjBjBjvnBjBjBjBjBjBjBjBjBjBjBjBjBjvnvnBjNJoMhtdsOVlvACdsBsoMhahaoMmpURDionZBoMhahahahaEQQJQJYONdLZaJAivblKMKgOwhcsIZBCBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLxNZVHLBmJUwUYbFLojlbTyiMiMNioRiMIQIQIQwGIQIQwGIQIQIQwGwGoMoMuxuxuxoMoMuxuxuxoMoMoMREJqugFWrRJqzVoMoMoMoMukVMoMukHmoMoMuxoMEQEQUtayvbvbvbvbfqvbsUMKgOwhwTIZYdSraiSySnWaWaFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaftNJyLmAxSwOBmBOXjIsFLmoymOOldoFfiIJBfdadadaDfdadaTPdadadatrshkOYtRARARAiSECGcRARAkcCCrRadnrWsJIVJCUKXrRXDYtjAHmVMpuHmHmUgJmRAeJXoAqkdkdozQbMJGwsgQQJlMKhJTOvvTOTOTOTOqgqgqgqguihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLyLsWBmBmBmIFFLFLFLxmldldldjjAdDwopCmUjyNqiqBLsLsLsLsLsNmVQEsHmHmHmHmzQVWVHVWVWVWzGLzlHVHfjsFVWVHDTLzEhVWVHVWJJVWsRVWVWlMHmbCAcSakFTLyEyEGUjanjlllljbwWTOsGboEWQoTOyesBUOVhuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLzsSfklBmtXsOdAFLyopacxldsKaFCWvNXsOinkAyiwnQXfthRzYUYUqnshDtEFDJZaWwBbZfQzgzvMHQjFpxGFiOCFwgpsfkKLlIYhDrIwDrDrpXEmJzokkuokoQXoYeASASASJiASASPtSpBMptkYWTpfqETOTOTOOFOFOFOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLoyLZctHXPBmvwXMczFLNQKISZldSdaFCWNvqVMNMNCnCnINMECnKbFNZzwGwGoMoMoMTlTlPvuFTlTloMoMoMoMzVJqrRFWugJqykoMoMVZoMNONONOXSNONOoMVZoMEQEQiViViVEQiViVEQtOZxMKntTOJnHyNbCpTOsTYQlxOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzRSFADFkBmiKKAYDFLkqLfgfldhQaFajMcQUMNejRJqrjDoiOhKbnLnLwGhahahahaTlfAABGpLpTlhahahaoMHAKqFoPBeLKqRjoMhahahaNOCPXtpFZmNOhahahahahahahahahahahaMgVjZxUMsITOWrTOTOTOTOOFuXuXGVuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLozRxUIvXYBmBLfmZQFLSHFzCRldzmaFdVwXWHMNDDSBSBSBqJGmKbhahahahahahahaTlkIGhdxrCTlhahahaxzGBHmHmVMvKAAjRtEhahahaNODzCkPmxwNOhahahahahahahahahahahaMgUZZxMKwWieOFOFmiFevTnhOFjnUvuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSIdvnNJyLumZMNuBmXxHnWOFLfVHCtAldfCaFfehNlrMNgsSBEErqtRlsKbhahahahahahahaTlKfNLDphyTlhahahaxzEzTMHmVMvKAArGinhahahaNOSssbYKkoNOhahahahahahahahahahahaEQEQsUnDnacEKnXKSSVXVXgTAMAMLauihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSPCOYOYOYHhQVBmBmFLOeFLFLldIfldldldOnTxMPMNMNKKcWAvKlobRGKbhahahahahahahaTlTlTlcRTlTlhahahaxzBYpHHmVMvKAAawtEhahahaNONONONONONOhahahahahahahahahahahahaEQxsixdMrhpLOFwDOFjUvFuXqtuiuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSteOYarGxHhszjveIpeDZUJRfVpDZjveIIkwSPDQadGjQSBHWZYcjobrUKbIdBjBjLWLWvnLWLWvniqVPgohahahahaxzuzNHpbdHhfHmGytEhahahahahahahahahahahahahahahahahahahahahaCTLEdFCTCTLUuXwDxCOFvFfGuiuihahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSuUnyKWuZDxJuyqLkFjngiraBemerctctmwENmXKoCnunbfHWZYcjobRuKbLohahahahahahahahahahahahahahahaoMlFdsVVsQZWdsNtoMhahahahahahahahahahahahahahahahahahahahahaCTmyhiRQCTwvwvwvuiwvwvwvuihahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSnUOYGiRlgKJNOuoayaCvoJkmJaCvXbbyRixJaxJFYPZrIzHWclcjMCWjKbLohahahahahahahahahahahahahahahajNIrIrKtjNRFIrIrjNhahahahahahahahahahahahahahahahahahahahahaoZGbHphBCThahahahahahahahahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSLoOYOYOYHhRgDvDvduTvduduYWJhYWYWYWOnjSeCCnEYNXNUAIcjSBmMKbLohahahabUhahahahahahahahahahahajNOyUNjlTGTEXaLDjNhahahahahahahahahahahahahahahahahahahahahaoZstTHUACThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSANvnpjdyKVmkFqDvnKUINEduMQQgIuYWMIaFvrHXCnTrjpxORJCXSBuAKbLohahahahahahahahahahahahahahahaOAbwGMrOXRatGMJGxHhahahahahahahahahahahahahahahabUhahahahahaoZIXlBjECThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDDNCIOwDvFsXhmQduAhpGfBYWCsaFdVNvMNmTGNrqniSBcWFyKbLohahahahahahahahahahahahahahahaOAhUGMrOGMatGMLJxHhahahahahahahahahahahahahahahahahahahahahaCTwIdFCTCThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDEHeNaPDvaAwCHIdupicwWEYWBSaFdVZnMNMUidHdThbWpcKbKbLohahahahahahahahahahabUhahahahaOAmaGGXLgrMtGjBGxHhahahahahahahahahahahahahahahahahahahahahaoZjkYvHDKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdybDEgXCDvbLJXLvdubzmClDYWTaaFdVaqKbKbKbKbKbKbKbKbhaLohahahahahahahahahahahahahahahajNjNjNJoRaJojNjNjNhahahahahahahahahahahahahahahahahahahahahaoZXzODDCKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLodyqpoTEtDvQZVAnEduLPdpzYYWpzaFdVFOKbOZQuKbhahahahahaLohahahahahahahahahahahahahahahahahaOAgNSWnnxHhahahahahahahahahahahahahahahahahahahahahahahaCTUEZICTCThahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgbPbPbPbPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdydyhcDvDvDvNzzSduduHxYWYWYWDAlSenAaAaAaAaAaAaJPJPAaLogxgxhahahahahahahahagxgxgxgxhahahaOAMAtpaCxHhahahahahabUhahahahahahahahahahahahahahahahahaGdfbOkFthahahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLogudyCOpIHYDvXVWlRydumUYBYlYWtyrtgJAayAqoRwysAamcDUAavqgxgxgxhahahahagxgxgxgxgxgxgxgxhahaOAWUVCkpxHhahahahahahahahahahahahahahaguhahahahahahahagxgxgxgxgxhahahaguguhahahahaguhahahaQrhahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaIdNJYydymzlyDYDvzcvJpBdurKFJpKYWNFjoXWTXPbFgRhtaTXSCqZSobegxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahajNCbfTCbjNhahahahahahahahahahahaguguguhahahahahahahagxgxgxgxgxgxhahahahahahahahahahahahahaOahahahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwswswswswsDvDvdudududuYWYWYWYWtyBasmUixxLGexFFkCiQdfhlNBgxgxgxgxgxgxgxgxababgxgxababgxhahakvSzEqSzkvhahahahahahahahahahahahahahahahahahahagxgxgxgxgxgxgxhahagxcqCTCTCTCTCThahahahaguaEhahahahahaEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwsxvfnzzicJjjGfMuVhnGtsyecGtuDVERcygibibibibyJAayJyJAavqgxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahahagxgxgxhahaOPhahadPdPdPdPdPhahahahahahahahahagxgxgxgxgxgxgxgxgxgxgxfbsDeKeKlVCThahahaguhaQrhahahahaVLEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwzocNEeDnGDqcqcCyjmrBJSsPsPRWXHqCzfibTBcBibftLWLWLWvnhHhahahagxhahahagxgxgxgxgxgxgxgxhahahagxgxgxhahahahahaAmNylZdIBkhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxfbsDeKRPeKAjhahahahahaQrhahahahaVLEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwyRachXwsgkZlZlgkrjPkZlZlgkgktyLiaRVIxPrlibLQhahahahaguguhahahahagxhahagxgxgxgxgxgxhahahagxgxgxgxgxhagxgxgxSUgxgxgxgxgxgxgxhahagxgxgxgxgxgxgxhagxgxgxgxgxgxgxfbsDwHeKgnCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLoNwVnfKouwsrTzLXIMlLgeFodMiFSEGkfutNjibksgIibLQhahahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahagxgxgxgxgxgxgxcICTCTCTCTCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowslmDnwswseWBZLLBiUkrFGuqLwxEGkjLOtCibibibibLQhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahagxgxgxgxgxhahahahahahahahahahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEvBzgzgzgzgzgzgzgzgzgzgbPbPbPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwySPlbGwsGgbmIObYluztmBbYXqEGgkgkgkgkftvnvnybhahahahaguhagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhagxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxhahahahahagxgxgxgxhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwznQDwewsMZbYaZWDaSeFZPTuEGEGftLWLWLWNJhahaJRhahahahahahagxgxgxgxgxgxgxhagxhahaxKwbHuxXwbQpMRhahahaxKQpQpQpaYFRWVWVFRWVWVFRhahahahahahahaguhaharuEVpSBEhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowsbkJewswsEGyZyZEGEGEGyZyZEGfthHhahahahahahaPChahahahaguhagxgxgxgxgxhahahahahahawrnVmSNnnVnVwrhahajZaYFRWVWVFRFReqVSqHVSPPFRFRWVWVFRhahahahahaKeKeiZrrKehahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaANTQXvWuTQvnvnvnvnvnvnvnvnLWLWNJhahahahahahahaLQhahahahaguhagxgxgxgxhahahahahahahajztiscBHHtEdKFhahawrFRFRRUxYVSMpseOLOLOLseIcVSRVVYFRFRhahahahaOCkZhsRLZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahagxgxgxgxgxGEgxgxgxgxgxgxhahaguhahahahahahahaANApBjpvvnvnBjALALALALLWLWApBjBjnFfoYHtiMOmGZbEdYorcQpaYFRwtFCxEQRQRQRQRQRQRQRQRQRAVgVewFRhahahahaOCJxcfQCZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgWnWnWnUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPbTbTbTbTbTQrbTbTbTGEGEGEGEGEGEOflzlzlzOfGEbTvgXZXZvgXZXZvgbTbTbTbTWvbTbTbTGEGEGEGEbTbTbTbTdPdPsSdPdPzMIenVnVnVnVNnNnFRkaOLPRPfnSnSnSnSnSVKVKOsPROLYXFRiZiZKeKeKeKevYhrbabababababTbTbTbTbTbTbTbTbTbTQrbTNaNaNaNayvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQDQtotototototototototototototoneGsGsGsGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahagxgxgxOfOfOfanCxUBOfOfgxvgIPkQxtSuqMvghahahahaKChahagxgxgxgxgxhahahahadProJTzPPYcKdbPNpRDkXuufowtjZZOLPRYaqGqGqGqGqGcTcTUqPROLYRtjWGdWUhjWSQMqKzGfLNRBLmeRbahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxHjcSKDkHndndYsOfOfvgGAMrWScpgCvghahahahaHShagxgxgxgxgxhahahahahadPhxlGJbJkPdHexeHeHeBrOWtDWxjcdSKgYaqGqGpkZSLAcTcTUqqYUVFpMVATwduanoAQbBBANeCEBhsLpobahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaguhahagxgxHjMuxZwNvOwjjdyntzqbcbblnAOJQGvgvgXZXZvgckgxgxgxgxgxgxhahahahahadPdPqNqNqNLeXJTqYGQqGKOqtlWZoVOLCwYaqGqGoYJfWpcTcTUqCwOLkeWZiuISsuNhKRSVoHxTLNLNLNbabahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxHjslkBwNcDeUgedmOfMHkhfxfxCzspjyfPlNIjOxHbgxgxgxgxgxgxgxhahahahahatiMMgPMsuSMXfOIeIenVpMpMFRttOLCwYaqGqGcTcTcTcTcTUqCwOLqjFRJAJAKeUhLFLFPeBJUhjrKhdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxOfOfEkwNHUxoGWYEOfGYliXdzxBPwqYCuwkRhAaTHbgxgxgxgxgxgxgxhahahahahatiglbrjLPFAuEnoCmFnVhahaFRncOLCwaWJEJEBUBUBUBUBUijCwOLDMFRhahaKejiiCBFuRIMgBgckXdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfFIlEmVmVmKhuxixixixixihTycQBvgJwqOvgckgxgxhagxgxgxgxhahahahahanVnVYMXJXJEZXJvIxbnVhahaFRNPLxVNxnxnxnxnGXxnxnxnxnvUHKrNFRhahaKejiZUqRaDaDyijIKeKehahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfOfwaKGaeOfOfxiGlMFXGuvXBUwvgvgjgjgvgHbgxhahagxgxgxgxhahahahahahanVfgmNWqrZONrdnVnVhahaFRFRlkfswzOlOLOLWCOLOLOlwzbSjCFRFRhahaKeKeUlqRaDaDyitQKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahagxGEgxOfyWyWyWOfgxxiULPaAGnIXpmvvgftvnvnvnUbhahahagxgxgxhahahahahahahanVnVpMpMnVpMpMnVhahahahaFRZGZGFRFRuyZeSiZeWkFRFRZGZGFRhahahahaKeSESEKeKeSESEKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahaguhahaGEgxgxgxgxgxgxgxxixicGxixijgvgvgLohahahahahahaFXgxgxgxhaFXhabUhahahahahahahahahahahahahahahahahahahaFRZGZGFRZGZGFRhahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahagxyyZEvDvnvnvnvnNJhahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaebnHnHnHnHnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHbqnHnHnHnHnHLyhahahahagxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHilVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahafQxqxqfQhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahaROxqxqhGCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfifCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahaCfCfROxqxqPWifCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXECfCfCfifififCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahaCfCfCfKwxqxqPWififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXECfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahaCfCfCfCfCfifKwxqxqPWCfCfifififififififififififififififififCfCfCfhahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififififROxqxqhGCfCfCfCfCfCfCfCfCfifififCfifififififififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfROxqxqhGCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfROxqxqhGCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwfQxqxqfQzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififififCfCfCfCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwtwzwzwgxgxgxzwtwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyCfCfCfCfCfCfCfifififififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwCfCfCfCfCfifCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfifCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwGRzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfififCfCfCfCfCfCfEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfififCfCfCfCfCfEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwHVCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifififCfCfCfEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfHVCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfifCfCfCfEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfWYififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifCfCfCfEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfWYCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififHVCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfHVCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfHVEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfifHVCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfWYCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfWYifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEygxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfififCfCfCfEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyyvEyCfCfifififCfCfEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyyvEyfQjXjXFDFDFDjXjXEcfQgxgxgxgxEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxGEgxxqxqxqxqxqxqxqxqxqxqgxgxEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTipyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxGEgxxqxqxqxqxqxqxqxqxqxqgxEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyyvEyfQVDcycyJQJQJQcycyfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLgDPOPOPOMhxLxLxLxLIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyyvEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgxLxLgDGvWPWPWPtYPOMhxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyyvEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLzaWPyTyTWPWPWPtYPOMhxLxLxLxLIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLzaWPWPyTyTyTWPWPWPtYMhxLxLxLxLIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLgDGvWPWPyTyTyTyTyTWPWPtYPOMhxLxLIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPKdfpxhxLxLxLIgIgIgxLxLgDGvWPWPyTyTEyEyEyyTWPWPWPWPhOxLxLxLIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPKdfpfpfpxhxLxLxLxLxLIgIgIgxLxLzaWPWPyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPfpfpfpxhxLxLxLxLxLxLxLxLxLIgIgIgIgxLKapWWPyTyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTCfCfxLxLxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgxLxLKapWWPyTyTyTyTEyEyEyEyyTyTyTWPtYMhxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfxLxLxLxLgDPOPOPOPOPOPOMhxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTyTyTyTWPWPhOxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfxLxLgDPOGvWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTWPWPWPWPhOxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfCfifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfPOPOGvWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLKafppWWPWPWPWPWPWPWPKdfpfpxhxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLxLxLKafpfpfpfpfpfpfpxhxLxLxLxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyCfCfififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgIggG -VgXEXEXEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoCfCfCfifififCfCfCfCfififififififCfCfCfCfCfCfCfCfCfyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoAoCfCfCfCfCfCfifififififififififififififififCfCfCfyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyAoAoAoAoAoAoAoCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTEyyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTlwyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfCffppWWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTCfCfCfCfxLKapWWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPCfCfCfxLxLKafpfppWWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyZuEyZuEyfQxqxqfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPCfCfxLxLxLxLxLKafpxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoEyEyEyEyEyEyEyAoAoPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPtYPOPOMhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoEyEyEyEyAoAoAoAoPUAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoZuEyZuEyfQxqxqfQEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoPUEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgWnWnWnWniFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQiFiFiFiFiFiFyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvtsyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvPUPUPUPUPUPUPUyvyvyvyvyvyvyvyvyvyvyvyvGEGEGEyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQtotototototototototototoneGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyjyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyhEEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyzCyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyhEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYxLxLxLxLxLxLIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOMhxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOPOgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTyTyTuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTEyEyyTyTuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTyTyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEEyyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyyTyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTyThChChCyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyThChChCyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTflSGvkSGFAyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyflSGvkSGFAyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEbvyjyjyjbvyjyjyjSkyjyjyjbvyjyjyjKBlAJHlAKByjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjuEuEuEXNXNuEuEuEyjbvyjyjEybvEyEyEybvEyEyEybvEyEyEybvEyEyEybvEyEyEyKBlAjHlAKBEyyvEybvEyEyEybvEyEyEybvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvhChChCbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvhChChCbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgIGXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvDPhCFHbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvDPhCFHbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvRrRrRrRrRrRrbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Yz +Yz +Yz +Yz +Yz +Yz +Yz +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +"} +(2,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +Cf +Cf +Cf +Cf +if +Cf +Cf +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +IG +Vg +"} +(3,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +Cf +Cf +Cf +if +if +Cf +Cf +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(4,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +zw +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +yT +yT +yT +yT +yT +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(5,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(6,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(7,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(8,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(9,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(10,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +lw +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(11,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(12,1,1) = {" +Vg +pC +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +GR +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(13,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(14,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(15,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(16,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(17,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(18,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(19,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(20,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(21,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(22,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(23,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(24,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(25,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(26,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +ff +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(27,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(28,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(29,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(30,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(31,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(32,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(33,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(34,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(35,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(36,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(37,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(38,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(39,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(40,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(41,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(42,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(43,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(44,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(45,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(46,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(47,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(48,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(49,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(50,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(51,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(52,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(53,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(54,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(55,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(56,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(57,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(58,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(59,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(60,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(61,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +GR +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(62,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(63,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(64,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(65,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(66,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(67,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(68,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(69,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(70,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(71,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(72,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(73,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(74,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(75,1,1) = {" +Vg +pC +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(76,1,1) = {" +Vg +pC +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(77,1,1) = {" +Vg +pC +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zZ +Eb +Eb +Pi +Eb +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +Eb +Pi +QS +Eb +QS +QS +QS +Ve +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +Qr +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +eb +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(78,1,1) = {" +Vg +pC +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +yp +gu +ha +QP +QP +QP +QP +QP +QP +QP +QP +dY +dY +dY +JK +dY +dY +dY +dY +dY +dY +JK +dY +MT +SO +ca +ha +gu +ha +gu +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Id +PC +te +uU +nU +Lo +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(79,1,1) = {" +Vg +pC +XE +ha +ha +ha +tf +Mn +ea +pA +ea +pA +ea +pA +ea +To +TD +ul +ED +Ej +vj +ry +pr +ss +VO +up +Bp +Qe +gy +zJ +zJ +zJ +IU +GL +nu +jK +xy +lC +Rq +iE +Py +ca +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +vn +OY +OY +ny +OY +OY +vn +ha +ha +ha +ha +ha +ha +Id +PC +PC +PC +PC +Lo +Lo +PC +PC +Lo +AN +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(80,1,1) = {" +Vg +pC +XE +ha +ha +gu +so +DG +UG +dX +UG +dX +UG +dX +UG +ha +nH +Po +tN +Ej +ss +CY +lO +qq +qX +KQ +rL +dY +PV +vs +oU +IW +uG +sV +Uo +WW +Xm +lC +Rv +oP +rf +ca +oD +ZK +ZK +ZK +ZK +ha +ha +ha +ha +ha +ha +ha +ha +ft +PC +PC +Lo +PC +Lo +NJ +OY +ar +KW +Gi +OY +pj +PC +PC +PC +Lo +PC +Lo +NJ +ws +ws +Nw +Nw +Nw +ws +Nw +Nw +ws +TQ +gx +bT +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(81,1,1) = {" +Vg +pC +XE +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +DG +Ps +Dh +mP +ha +QP +yh +Sx +qX +lg +Ud +aI +nf +JK +PV +UD +Cl +tU +uG +sV +tL +la +TV +JK +Va +kw +jM +ca +TN +ZK +mY +ZX +Qx +As +ha +ha +ha +ha +ft +PC +PC +NJ +yL +yL +yL +zR +zR +yL +OY +Gx +uZ +Rl +OY +dy +zD +zD +dy +dy +dy +gu +Yy +ws +xv +zo +yR +Vn +lm +yS +zn +bk +Xv +gx +GE +ha +ha +ha +gu +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(82,1,1) = {" +Vg +pC +XE +ha +ha +ha +Vr +dX +wy +wy +wy +wy +wy +wy +rn +ha +nH +ha +ha +Cu +is +hP +dL +MY +Bp +ci +hF +dY +PV +Oj +VG +bI +uG +sV +Uo +OE +Xm +lC +tG +dq +yC +je +NK +bp +Bv +nR +ZK +kL +ha +ha +ha +ha +vn +yL +yL +yL +yL +zs +Zc +SF +xU +um +Hh +Hh +Dx +gK +Hh +KV +DN +EH +bD +qp +dy +dy +dy +ws +fn +cN +ac +fK +Dn +Pl +QD +Je +Wu +gx +GE +gx +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(83,1,1) = {" +Vg +pC +XE +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +jq +ha +nH +ha +ha +QP +is +mb +hR +io +Qy +Nq +qf +uO +Ld +oU +NW +oU +iT +JK +pQ +aX +Xm +lC +Vt +gE +Ae +yX +Ce +NY +ZK +ZK +ZK +kL +ha +ha +ha +ha +Bj +yL +xN +mA +sW +Sf +tH +AD +Iv +ZM +QV +sz +Ju +JN +Rg +mk +CI +eN +Eg +oT +hc +CO +mz +ws +zz +Ee +hX +ou +ws +bG +we +ws +TQ +gx +GE +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(84,1,1) = {" +Vg +pC +pC +ha +ha +gu +Vr +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +QP +gd +Lj +Rs +Bp +dO +HF +vC +dY +dY +ev +UC +ev +JK +dY +iz +mf +CM +dY +ca +Lq +ca +ca +rQ +TF +GO +Dl +oD +vn +ha +ha +ha +ha +vn +yL +ZV +xS +Bm +kl +XP +Fk +XY +Nu +Bm +jv +yq +Ou +Dv +Fq +Ow +aP +XC +Et +Dv +pI +ly +ws +ic +Dn +ws +ws +ws +ws +ws +ws +vn +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(85,1,1) = {" +Vg +cJ +cJ +bT +bT +wJ +EP +MD +KE +KE +KE +KE +KE +KE +JZ +bT +Yn +bT +bT +QP +vd +Lj +Tj +lo +EL +ch +RY +dY +NZ +ud +uB +Xi +tb +bt +Kj +CH +bZ +dQ +bV +nY +Ch +Jv +Qn +SA +yD +wP +oD +bc +bT +bT +bT +bT +mR +yL +HL +wO +Bm +Bm +Bm +Bm +Bm +Bm +Bm +eI +Lk +oa +Dv +Dv +Dv +Dv +Dv +Dv +Dv +HY +DY +Dv +Jj +GD +gk +rT +eW +Gg +MZ +EG +vn +GE +GE +Of +Hj +Hj +Hj +Of +GE +GE +GE +GE +bT +bT +Yn +bT +bT +bT +bT +bT +UP +UP +UP +UP +UP +UP +UP +UP +UP +UP +HV +HV +WY +WY +HV +HV +UP +UP +UP +UP +UP +UP +UP +UP +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +ts +yv +yv +yv +yv +yv +yv +yv +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +Sk +Sk +Sk +rV +"} +(86,1,1) = {" +Vg +pC +pC +ha +ha +gu +Vr +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +QP +aV +mh +qW +dB +fd +uY +Vy +qs +Ql +yt +gW +Mk +Ua +wY +dY +qw +dY +JK +fu +qk +yX +cg +yD +Bt +DL +Ph +oD +LW +ha +ha +ha +ha +vn +yL +Bm +Bm +Bm +tX +vw +iK +BL +Xx +FL +pe +Fj +ya +du +nK +Fs +aA +bL +QZ +Dv +Dv +Dv +Dv +jG +qc +Zl +zL +BZ +bm +bY +yZ +vn +gx +GE +Of +cS +Mu +sl +Of +Of +Of +gx +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(87,1,1) = {" +Vg +pC +pC +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +jq +ha +nH +ha +ha +QP +QP +QP +QP +QP +cA +LR +nP +Ib +Ib +zI +Ib +Xm +vt +fc +GI +iH +DW +dY +ca +ca +ca +WI +iU +YV +oD +oD +Lw +LW +ha +ha +ha +ha +vn +Te +JU +BO +IF +sO +XM +KA +fm +Hn +Oe +DZ +ng +Cv +Tv +UI +Xh +wC +JX +VA +Nz +XV +zc +du +fM +qc +Zl +XI +LL +IO +aZ +yZ +vn +gx +Of +Of +KD +xZ +kB +Ek +FI +Of +Of +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(88,1,1) = {" +Vg +pC +pC +ha +ha +ha +IA +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +Ts +Sv +gh +wu +gL +aN +Pz +dk +Ib +Cr +aM +Ib +nX +UQ +dY +dE +PA +lX +dY +yy +yy +oD +oD +Wz +oD +oD +ft +Lo +EU +ha +ha +ha +ha +Bj +Te +wU +Xj +FL +dA +cz +YD +ZQ +WO +FL +UJ +ir +oJ +du +NE +mQ +HI +Lv +nE +zS +Wl +vJ +du +uV +Cy +gk +Ml +Bi +bY +WD +EG +vn +gx +lz +an +kH +wN +wN +wN +lE +wa +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(89,1,1) = {" +Vg +pC +pC +ha +ha +ha +of +wy +wy +YF +YF +YF +wy +wy +UG +ha +nH +ha +ha +RT +lJ +Uc +OX +QP +QP +QP +QP +Ib +gw +tF +Ib +nT +EJ +dY +dY +QI +dY +wY +yy +yy +Vq +XX +ml +rD +Qj +LW +hK +hK +ha +ha +ha +ha +Bj +Te +Yb +Is +FL +FL +FL +FL +FL +FL +FL +Rf +aB +km +du +du +du +du +du +du +du +Ry +pB +du +hn +jm +rj +Lg +Uk +lu +aS +EG +vn +gx +lz +Cx +nd +vO +cD +HU +mV +KG +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(90,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +gu +gu +ha +ha +ha +gu +gu +ha +ha +nH +ha +ha +JV +al +RT +al +iL +Pw +Pw +dd +Ib +We +tq +Ib +eV +Qf +vH +lW +DB +yy +yy +QH +yy +Vq +fI +hL +CD +Qj +LW +hK +hK +ha +ha +ha +ha +Bj +Te +FL +FL +FL +yo +NQ +kq +SH +fV +ld +Vp +em +Ja +YW +MQ +Ah +pi +bz +LP +du +du +du +du +Gt +rB +Pk +eF +rF +zt +eF +EG +vn +gx +lz +UB +nd +wj +eU +xo +mV +ae +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(91,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +gu +gu +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +RT +al +RT +al +iL +Pw +Pw +Pw +Ib +Ib +Ib +Ib +Hf +WB +pm +lW +DB +yy +EB +ha +yy +oD +oD +wK +oD +oD +vn +hK +hK +ha +ha +ha +ha +Bj +bO +oj +mo +xm +pa +KI +Lf +Fz +HC +If +DZ +er +Cv +Jh +Qg +pG +cw +mC +dp +Hx +mU +rK +YW +sy +JS +Zl +od +Gu +mB +ZP +yZ +vn +gx +Of +Of +Ys +jd +ge +GW +mK +Of +Of +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(92,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +gu +ha +ha +nH +ha +ha +Ax +qz +GS +qz +iL +Pw +Pw +Pw +iG +QY +zj +lW +lW +Kr +lW +lW +DB +yy +EB +ha +WL +OS +pl +lc +OS +lc +LW +hK +hK +ha +ha +ha +ha +Bj +bO +lb +ym +ld +cx +SZ +gf +CR +tA +ld +jv +ct +Xb +YW +Iu +fB +WE +lD +zY +YW +YB +FJ +YW +ec +sP +Zl +Mi +qL +bY +Tu +yZ +LW +ha +GE +Of +Of +yn +dm +YE +hu +Of +gx +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +bv +bv +rV +"} +(93,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +gu +ha +ha +nH +ha +ha +ha +KP +KP +KP +KP +KP +An +KP +KP +KP +AE +KP +AR +AZ +rb +KP +DB +yy +EB +ha +ha +gx +gx +gx +gx +gx +HZ +PC +PC +PC +Lo +PC +Lo +NJ +bO +Ty +OO +ld +ld +ld +ld +ld +ld +ld +eI +ct +by +YW +YW +YW +YW +YW +YW +YW +Yl +pK +YW +Gt +sP +gk +FS +wx +Xq +EG +EG +LW +ha +bT +gx +Of +tz +Of +Of +xi +xi +xi +xi +gx +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yT +fl +KB +bv +bv +bv +"} +(94,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +KP +av +av +av +yI +fv +KP +Ih +pg +eH +Ob +oO +iy +nJ +KP +DB +yy +EB +ha +ha +ha +gx +gx +gx +gx +vn +iM +pO +pO +iM +iM +iM +iM +iM +iM +ld +ld +sK +Sd +hQ +zm +fC +ld +Ik +mw +Ri +YW +MI +Cs +BS +Ta +pz +YW +YW +YW +YW +uD +RW +gk +EG +EG +EG +EG +ft +NJ +gu +vg +vg +vg +qb +MH +GY +xi +Gl +UL +xi +yy +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yT +hC +SG +lA +hC +DP +hC +"} +(95,1,1) = {" +Vg +pC +pC +ha +ha +gu +gu +ha +ha +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +ZA +mE +xr +xr +qd +CB +dT +dh +Ro +zv +Vu +oO +iy +lU +KP +oX +yy +yy +ha +ha +ha +gx +gx +gx +gx +HE +iM +Fn +Ep +iM +Fr +td +Jg +he +iM +oF +jj +aF +aF +aF +aF +aF +On +wS +EN +xJ +On +aF +aF +aF +aF +aF +DA +ty +NF +ty +VE +XH +ty +kf +kj +gk +ft +hH +ha +ha +XZ +IP +GA +cb +kh +li +xi +MF +Pa +cG +ZE +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yj +yj +yj +yT +yT +yT +hC +vk +JH +hC +hC +hC +"} +(96,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +qy +uP +hZ +hZ +jY +jY +Qv +Yu +Ro +mm +IT +zh +oN +FZ +oA +Up +yy +EB +ha +ha +ha +gx +ha +gx +gx +zK +Sc +rE +oy +Ni +LM +TA +Hs +jT +Ni +fi +Ad +CW +CW +aj +dV +fe +Tx +PD +mX +ax +jS +vr +dV +dV +dV +dV +lS +rt +jo +Ba +Rc +qC +Li +ut +LO +gk +LW +ha +ha +ha +XZ +kQ +Mr +bl +fx +Xd +xi +XG +AG +xi +vD +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +yj +yj +yj +yT +yT +hC +SG +lA +hC +FH +hC +"} +(97,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +nH +ha +ha +KP +dU +yB +yB +yB +as +Kk +fZ +PQ +Hc +Ff +Mo +oO +Af +KP +KP +gR +yy +yy +ha +ha +ha +gx +ha +gx +gx +UH +wp +mD +oS +LK +Az +tI +pP +uT +oR +IJ +Dw +vN +Nv +Mc +wX +hN +MP +Qa +Ko +JF +eC +HX +Nv +Zn +aq +FO +en +gJ +XW +sm +yg +zf +aR +Nj +tC +gk +LW +ha +ha +ha +vg +xt +WS +nA +fx +zx +xi +uv +nI +xi +vn +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +FA +KB +bv +bv +bv +"} +(98,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +zb +KP +KP +KP +KP +KP +KP +KP +KP +KP +KP +nN +oO +AF +Im +KP +vn +yy +yy +ha +ha +gx +gx +gx +gx +gx +HE +iM +rP +rP +iM +rP +rP +rP +iM +iM +Bf +op +Xs +qV +QU +WH +lr +MN +dG +Cn +YP +Cn +Cn +MN +MN +Kb +Kb +Aa +Aa +TX +Ui +ib +ib +VI +ib +ib +gk +LW +ha +ha +ha +XZ +Su +cp +OJ +Cz +BP +hT +XB +Xp +jg +vn +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +bv +bv +rV +"} +(99,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +oL +Gz +El +Fu +Uu +eX +OQ +au +KP +py +oO +Hv +ub +KP +vn +yy +EB +ha +ha +gx +gx +gx +gx +gx +ra +LQ +LQ +LQ +Lo +LQ +Lo +LQ +ZE +IQ +da +Cm +Oi +MN +MN +MN +MN +MN +jQ +un +Zr +EY +Tr +mT +MU +Kb +OZ +Aa +yA +Pb +xx +ib +TB +xP +ks +ib +ft +NJ +ha +ha +ha +XZ +qM +gC +QG +sp +wq +yc +Uw +mv +vg +vn +ha +bq +ha +ha +ha +ha +ha +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(100,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +ms +cn +ZN +Lt +Uu +uq +tm +QN +KP +iD +oO +uK +MW +KP +pj +ZE +yy +ha +ha +gx +gx +gx +gx +gx +vn +ha +ha +ha +ha +ha +ha +ha +vn +IQ +da +Uj +nk +MN +ej +DD +gs +KK +SB +bf +Iz +NX +jp +GN +id +Kb +Qu +Aa +qo +Fg +LG +ib +cB +rl +gI +ib +vn +ha +ha +ha +ha +vg +vg +vg +vg +jy +YC +QB +vg +vg +vg +vn +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(101,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +Sb +nO +Mb +mj +Uu +cr +KU +cr +XQ +XQ +XQ +Lu +SK +XQ +XQ +vn +EB +ha +ft +oE +oE +oE +oE +oE +hH +ha +ha +ha +ha +gu +ha +ha +Bj +IQ +da +yN +Ay +Cn +RJ +SB +SB +cW +HW +HW +HW +NU +xO +rq +Hd +Kb +Kb +Aa +Rw +Rh +ex +ib +ib +ib +ib +ib +vn +ha +ha +ha +ha +bT +ha +ha +vg +fP +uw +vg +vg +ft +Lo +NJ +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(102,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +Sb +uQ +iJ +JO +Uu +Ti +ek +PK +eu +Qh +fa +sH +sk +Tw +XQ +pj +Lo +Lo +it +gx +gx +gx +gx +ha +ha +ha +ha +gu +gu +ha +ha +ha +Bj +wG +Df +qi +iw +Cn +qr +SB +EE +Av +ZY +ZY +cl +AI +RJ +ni +Th +Kb +ha +Aa +ys +ta +FF +yJ +ft +LQ +LQ +LQ +yb +JR +PC +LQ +AN +bT +ha +ha +XZ +lN +kR +Jw +jg +vn +ha +ha +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(103,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +Sb +Sb +rM +GT +Uu +sY +Mv +UU +eu +aG +lQ +pT +sd +Yg +XQ +np +np +XQ +GP +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +qB +nQ +IN +jD +SB +rq +Kl +cj +cj +cj +cj +CX +SB +bW +Kb +ha +Aa +Aa +TX +kC +Aa +LW +ha +ha +ha +ha +ha +ha +ha +Ap +bT +ha +ha +XZ +Ij +hA +qO +jg +vn +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(104,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +yQ +Nf +Ov +ol +OR +kM +bE +eu +tV +ph +EO +Yi +Jy +Pc +pp +lt +ju +Ho +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +Xf +ME +oi +qJ +tR +ob +ob +ob +MC +SB +SB +cW +pc +Kb +ha +JP +mc +SC +iQ +yJ +LW +ha +ha +ha +ha +ha +ha +ha +Bj +bT +ha +ha +vg +Ox +aT +vg +vg +vn +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(105,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +yQ +yQ +YJ +JL +kg +bh +zB +Wm +eu +eu +iA +BK +hS +eu +XQ +qx +Wy +IE +hY +gx +gx +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +vn +wG +TP +Ls +th +Cn +Oh +Gm +ls +RG +rU +Ru +Wj +mM +uA +Fy +Kb +Kb +ha +JP +DU +qZ +df +yJ +LW +ha +ha +ha +ha +ha +ha +ha +pv +Wv +KC +HS +ck +Hb +Hb +ck +Hb +Ub +ha +ha +ha +Ly +ha +ha +ha +ha +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(106,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +Ii +hM +vi +AX +AX +kM +VU +eP +pY +le +rw +zH +Tt +Vk +mI +rA +XQ +Ll +gx +gx +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +Bj +IQ +da +Ls +Rz +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +ha +ha +Aa +Aa +So +hl +Aa +vn +ha +ha +ha +ha +ha +ha +ha +vn +bT +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(107,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +rW +hM +vi +AX +AX +sa +yz +KN +Il +Bd +Np +ZT +YZ +Vk +hq +hq +XQ +DB +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +YU +FN +nL +ha +ha +ha +Id +Lo +Lo +Lo +Lo +Lo +Lo +Lo +Lo +Lo +vq +be +NB +vq +hH +gu +ha +ha +gu +ha +gu +gu +vn +bT +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +tw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(108,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +Ii +hg +iW +Wt +Gr +BD +eY +vp +cv +LI +Rn +aL +Vd +Vk +KS +wc +wc +el +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +YU +Zz +nL +ha +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gu +ha +ha +ha +ha +ha +ha +Bj +bT +gx +gx +gx +gx +gx +ha +ha +ha +FX +ha +ha +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(109,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +yQ +yQ +ih +IY +qD +xV +qD +sr +SJ +dw +FB +UY +qA +FP +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +wG +tr +Nm +qn +wG +wG +ha +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +fQ +RO +RO +Kw +Kw +RO +RO +RO +fQ +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(110,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +Yc +Yc +sA +QT +hD +Yc +lP +bN +hk +Lb +dt +Vk +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +wG +sh +VQ +sh +wG +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +gx +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +xq +xq +xq +gx +gx +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(111,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +xB +sf +AH +qa +dJ +AK +eO +bN +Tz +nG +Tc +dg +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +uH +ha +ha +ha +gx +gx +ha +ha +ha +Bj +oM +kO +Es +Dt +oM +ha +ha +ha +ha +LW +ha +ha +bU +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +gx +gx +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +xq +xq +xq +gx +gx +gx +gx +gx +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(112,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +De +zu +iN +DE +Dq +zu +tT +Vk +sn +RN +aL +rm +cO +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +Gk +ha +gx +gx +ha +ha +ha +ha +Bj +oM +Yt +Hm +EF +oM +ha +ha +ha +ha +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +ha +gx +gx +gx +gx +gx +gx +AL +GE +gx +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +fQ +hG +PW +PW +PW +hG +hG +hG +fQ +zw +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(113,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +im +zu +us +KH +IV +zu +zO +Vk +nm +RN +aL +ww +cO +DB +ha +ha +ha +gx +gx +ha +ha +uH +ha +ha +gx +gx +gx +gx +ha +ha +Bj +ux +RA +Hm +DJ +oM +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +gx +gx +gx +gx +gx +gx +ha +LW +bT +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +ha +ha +ha +Cf +if +if +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(114,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +Sj +FK +Zg +vz +YI +Sh +gm +Vk +bg +RN +aL +Zk +Vk +ZJ +ha +ha +gx +gx +gx +ha +ha +gx +ha +ha +gx +Oc +Oc +gx +ha +ha +Bj +ux +RA +Hm +Za +Tl +Tl +Tl +Tl +Tl +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +ha +gx +gx +gx +gx +ha +ha +LW +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +tw +zw +zw +zw +zw +zw +zw +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(115,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +FK +tZ +zu +zu +Iy +zu +zu +qv +Vk +kn +hb +ZT +yV +cO +DB +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +gx +ha +ha +Bj +ux +RA +Hm +Ww +Tl +fA +kI +Kf +Tl +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gx +gx +gx +gx +ha +ha +Ap +bT +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(116,1,1) = {" +Vg +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +ag +vA +kS +xD +fS +DK +kS +kU +Vk +dN +Um +Fi +fY +cO +ZJ +ha +ha +gx +gx +ha +gx +gx +gx +gx +ha +gx +Oc +Oc +gx +ha +ha +Bj +oM +iS +zQ +Bb +Pv +AB +Gh +NL +Tl +iq +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +ha +ha +ha +Bj +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +pw +ha +ha +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(117,1,1) = {" +Vg +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +LY +Vo +FK +FK +FK +FK +FK +Vk +Vk +sC +oI +Vk +Vk +Vk +DB +ha +gx +gx +gx +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +Bj +oM +EC +VW +Zf +uF +Gp +dx +Dp +cR +VP +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +gx +ha +ha +Bj +dP +dP +dP +dP +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(118,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +Ga +fD +FK +yy +Hr +yy +NC +rH +Zj +Bq +ot +cO +KS +wc +el +ha +gx +gx +gx +ha +bU +gu +ha +ha +ha +gx +gx +gx +gx +ha +ha +Bj +ux +Gc +VH +Qz +Tl +Lp +rC +hy +Tl +go +ha +ha +ha +ha +ha +bU +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +nF +dP +ro +hx +dP +ti +ti +nV +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(119,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +rH +UT +tk +gQ +cO +ZJ +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +gu +ha +gx +gx +ha +ha +ha +ha +vn +ux +RA +VW +gz +Tl +Tl +Tl +Tl +Tl +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +fo +sS +JT +lG +qN +MM +gl +nV +nV +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +hE +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(120,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +Vk +Vk +dZ +xk +Vk +DB +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +cZ +ha +gu +ha +vn +ux +RA +VW +vM +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +xK +wr +jz +YH +dP +zP +Jb +qN +gP +br +YM +fg +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +bv +bv +rV +"} +(121,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Ly +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +yy +vo +Vm +YA +CQ +ur +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +Bj +oM +kc +VW +HQ +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +wb +nV +ti +ti +dP +PY +Jk +qN +Ms +jL +XJ +mN +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +bv +rV +"} +(122,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +wL +kV +wf +wL +yy +yy +yy +yy +yy +pV +Xe +Xe +Qd +ha +gx +gx +ha +ha +ha +Id +PC +Lo +PC +Lo +Lo +PC +PC +PC +Lo +PC +Lo +PC +NJ +oM +CC +zG +jF +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gx +gx +gx +Hu +mS +sc +MO +zM +cK +Pd +Le +uS +PF +XJ +Wq +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +rV +"} +(123,1,1) = {" +Ds +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +wL +XF +wf +qU +yy +yy +yy +yy +yy +vP +gx +gx +gx +gx +gx +gx +ha +ha +ha +Bj +FU +eS +eS +eS +FU +FU +oM +oM +xz +xz +xz +oM +oM +oM +rR +Lz +px +oM +oM +xz +xz +xz +xz +oM +jN +jN +OA +OA +OA +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +xX +Nn +BH +mG +Ie +db +He +XJ +MX +Au +EZ +rZ +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +rV +"} +(124,1,1) = {" +eM +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +wL +XF +wf +wL +yy +yy +yy +yy +pV +Qd +gx +gx +gx +gx +gx +ft +PC +PC +Lo +NJ +FU +Tm +Vb +oe +dv +Gq +eD +Db +Ez +BY +uz +Db +ht +RE +ad +lH +GF +zV +HA +GB +Ez +BY +uz +lF +Ir +Oy +bw +hU +ma +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +wb +nV +Ht +Zb +nV +PN +xe +Tq +fO +En +XJ +ON +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(125,1,1) = {" +NR +rY +rY +BN +ky +yO +BQ +hv +hv +hv +BQ +BQ +hv +BQ +hv +hv +BQ +BQ +BQ +hv +BQ +ML +NN +fJ +xF +Xe +Xe +Xe +Xe +Qd +gx +gx +gx +gx +gx +gx +ZF +FU +eS +eS +eS +FU +HR +Qt +Qt +FE +Gq +Kq +Hm +Hm +Hm +Hm +Hm +ds +Jq +nr +VH +iO +Jq +Kq +Hm +TM +pH +NH +ds +Ir +UN +GM +GM +GG +jN +OA +OA +OA +jN +kv +ha +ha +gx +gx +gx +gx +Qp +nV +Ed +Ed +nV +pR +He +YG +Ie +oC +vI +rd +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +bv +bv +bv +rV +"} +(126,1,1) = {" +Ak +wM +TS +fL +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ex +gx +gx +gx +gx +gx +gx +RX +ID +Fb +gq +ln +TT +mt +UK +UK +mr +ue +qh +LT +vK +vK +vK +vK +OV +ug +Ws +fj +CF +rR +Fo +Hm +Hm +Hm +pb +VV +Kt +jl +rO +rO +XL +Jo +gN +MA +WU +Cb +Sz +gx +gx +gx +gx +gx +gx +MR +wr +KF +Yo +nV +Dk +He +Qq +Ie +mF +xb +nV +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(127,1,1) = {" +Ak +wM +wM +wM +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Al +vx +BI +Cd +jx +OI +HO +Qt +DH +xW +FU +xR +dH +VM +VM +VM +VM +lv +FW +JI +sF +wg +FW +PB +VM +VM +VM +dH +sQ +jN +TG +XR +GM +gr +Ra +SW +tp +VC +fT +Eq +gx +gx +gx +gx +gx +ha +ha +ha +ha +rc +nV +Xu +Br +GK +nV +nV +nV +nV +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(128,1,1) = {" +Ak +wM +yH +fL +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +RX +ID +yr +It +nM +TT +IH +QM +QM +vV +si +fw +vm +Hm +Hm +Hm +Hm +AC +rR +VJ +VW +ps +ug +eL +vK +vK +vK +hf +ZW +RF +TE +at +at +Mt +Jo +nn +aC +kp +Cb +Sz +gx +gx +gx +gx +gx +gx +ha +ha +ha +Qp +Nn +uf +OW +Oq +pM +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(129,1,1) = {" +NR +rY +rY +Fc +bj +aQ +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +NV +FU +BT +BT +BT +FU +zq +Qt +Qt +VB +Gq +Kq +Hm +Hm +Hm +Hm +Hm +ds +Jq +CU +VH +fk +Jq +Kq +AA +AA +AA +Hm +ds +Ir +Xa +GM +GM +Gj +jN +xH +xH +xH +jN +kv +ha +ha +gx +gx +gx +gx +ha +jZ +wr +aY +Nn +ow +tD +tl +pM +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +rV +"} +(130,1,1) = {" +eM +pC +Dc +zk +ki +fE +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +ha +gx +gx +gx +gx +gx +ha +ha +OP +ha +gx +gx +gx +ha +ha +Ap +ha +ha +ha +ha +FU +Rx +zX +sM +PT +Gq +Nr +xd +zp +bF +vQ +ET +Bs +zV +KX +DT +KL +yk +Rj +jR +rG +aw +Gy +Nt +Ir +LD +JG +LJ +BG +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +xK +aY +FR +FR +FR +tj +Wx +WZ +FR +FR +FR +FR +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(131,1,1) = {" +eM +pC +Dc +ZO +eB +Eu +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Xg +HP +HP +HP +nq +ha +ha +ha +ha +gx +gx +gx +ha +ha +Ap +ha +ha +ha +ha +FU +BT +BT +BT +FU +FU +oM +oM +tE +in +tE +oM +oM +oM +rR +Lz +lI +oM +oM +tE +in +tE +tE +oM +jN +jN +xH +xH +xH +jN +ha +ha +ha +ha +ha +OP +ha +gx +gx +gx +gx +Qp +FR +FR +wt +ka +ZZ +jc +oV +tt +nc +NP +FR +FR +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +if +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +PU +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +yT +yT +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +"} +(132,1,1) = {" +Vg +pC +Dc +Dc +Dc +Dc +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +OB +OB +OB +GJ +ha +ha +ha +ha +gx +gx +gx +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +XD +Eh +Yh +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +Qp +WV +RU +FC +OL +OL +dS +OL +OL +OL +Lx +lk +ZG +ha +ha +ha +nH +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +PU +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +Ey +yT +yT +yT +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Rr +"} +(133,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +pw +ha +ha +ha +ha +ha +GJ +Rp +Be +nl +GJ +ha +ha +ha +VF +ZH +HP +hW +LX +Lo +hH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +Yt +VW +Dr +VZ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +Qp +WV +xY +xE +PR +PR +Kg +Cw +Cw +Cw +VN +fs +ZG +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +PU +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +Ey +Ey +Ey +yT +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Rr +"} +(134,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +Be +pJ +Be +GJ +ha +ha +GJ +GJ +Uz +WK +GJ +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +oM +oM +oM +oM +oM +jA +VH +Iw +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Am +SU +SU +SU +SU +aY +FR +VS +QR +Pf +Ya +Ya +Ya +Ya +aW +xn +wz +FR +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +if +Cf +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +PU +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +yT +Ey +Ey +Ey +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +Rr +"} +(135,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +VR +Be +oc +GJ +ha +ha +yM +Yr +pn +Wi +Us +LW +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +ha +ha +ha +ux +Vw +JB +GB +mp +uk +Hm +VW +Dr +NO +NO +NO +NO +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +dP +Ny +gx +gx +gx +gx +FR +FR +Mp +QR +nS +qG +qG +qG +qG +JE +xn +Ol +FR +FR +ha +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +PU +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +yT +yT +yT +yT +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +Rr +"} +(136,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +GJ +Do +GJ +GJ +ha +ha +yM +Hg +pU +js +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +eo +TI +iX +UR +VM +VM +JJ +Dr +NO +CP +Dz +Ss +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +lZ +gx +gx +gx +gx +WV +eq +se +QR +nS +qG +qG +qG +qG +JE +xn +OL +uy +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +PU +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Rr +"} +(137,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +GJ +EI +OH +GJ +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +Ot +Tf +yK +Di +oM +pu +VW +pX +NO +Xt +Ck +sb +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +dI +gx +gx +gx +gx +WV +VS +OL +QR +nS +qG +pk +oY +cT +BU +xn +OL +Ze +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +PU +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Rr +"} +(138,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +sN +aK +yP +Us +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +YL +ox +og +on +uk +Hm +sR +Em +XS +pF +Pm +YK +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Bk +gx +gx +gx +gx +FR +qH +OL +QR +nS +qG +ZS +Jf +cT +BU +GX +WC +Si +FR +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +"} +(139,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +IK +Hw +Se +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +pq +BV +rX +ZB +Hm +Hm +VW +Jz +NO +Zm +xw +ko +NO +ha +ha +ha +ha +ha +ha +ha +ha +oK +ha +ha +ha +ha +Sw +ha +gx +gx +gx +gx +WV +VS +OL +QR +nS +qG +LA +Wp +cT +BU +xn +OL +Ze +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +yj +bv +bv +rV +"} +(140,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +jw +yY +Lr +Us +pj +PC +PC +Lo +PC +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +oM +oM +oM +oM +oM +Ug +VW +ok +NO +NO +NO +NO +NO +ha +ha +ha +ha +ha +ha +ha +zy +mg +KJ +xj +Nl +QK +mg +nB +gx +gx +gx +gx +WV +PP +se +QR +VK +cT +cT +cT +cT +BU +xn +OL +Wk +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +bv +bv +bv +rV +"} +(141,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +gj +gj +sw +sw +sw +GJ +Od +bM +PM +GJ +ed +ed +ed +Ip +Ip +pj +ZE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +Jm +lM +ku +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CS +iP +Vi +Vi +Nl +CS +ha +gx +gx +gx +gx +FR +FR +Ic +QR +VK +cT +cT +cT +cT +BU +xn +Ol +FR +FR +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(142,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +gj +gj +de +WA +WA +sx +GJ +GJ +EI +tM +GJ +oo +om +IR +TW +Ip +Ip +pj +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +RA +Hm +ok +VZ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Sl +iB +Fw +ey +Pn +Zs +gu +ha +gx +gx +gx +ha +FR +VS +QR +Os +Uq +Uq +Uq +Uq +ij +xn +wz +FR +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(143,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +gj +vE +wQ +wQ +wQ +Mm +pN +GC +tx +XU +qT +ZL +qm +qm +qm +RI +Ip +Ip +LW +ha +ha +ha +ha +ha +bU +ha +ha +ha +ha +ha +ha +oM +eJ +bC +oQ +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +MS +sZ +TK +Qm +Go +Sl +ha +gu +gx +gx +gx +ha +WV +RV +AV +PR +PR +qY +Cw +Cw +Cw +vU +bS +ZG +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Ey +bv +bv +rV +"} +(144,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +kK +BR +rz +FM +uN +Jc +pN +Ei +af +ef +qT +bH +NI +NI +NI +tn +mx +Ip +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +EQ +Xo +Ac +Xo +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Qc +sZ +Ab +xg +sZ +Zs +ha +gx +gx +gx +gx +ha +WV +VY +gV +OL +OL +UV +OL +OL +OL +HK +jC +ZG +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +bv +bv +bv +rV +"} +(145,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +II +Yj +tc +ZR +CG +tg +pd +Cq +af +qI +WQ +EX +TR +EK +Ar +Ag +TC +ga +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +EQ +EQ +Aq +Sa +Ye +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Sw +RR +Cj +iv +eZ +Sw +ha +gx +gx +gx +gx +ha +FR +FR +ew +YX +YR +Fp +ke +qj +DM +rN +FR +FR +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +rV +"} +(146,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +Qi +In +YT +Gn +lR +KZ +PZ +iY +yG +jJ +cY +Ur +xA +Js +Nx +iR +KT +ga +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +QJ +Ut +kd +kF +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zy +mg +KJ +zU +Jp +QK +mg +NS +gx +gx +gx +gx +ha +ha +FR +FR +FR +tj +MV +WZ +FR +FR +FR +FR +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Zu +Ao +Ao +Ao +Ao +Zu +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +rV +"} +(147,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +eg +fy +fy +cC +AY +nv +XO +CN +gX +pZ +rI +kN +Vs +uJ +Xr +Oo +KT +ga +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +QJ +ay +kd +TL +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +qS +ha +ha +ha +ha +qS +gx +gx +gx +gx +ha +ha +ha +ha +ha +iZ +WG +AT +iu +JA +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +bv +bv +rV +"} +(148,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +Sq +cX +bs +RD +MB +bX +pd +TZ +Hk +Hi +WQ +vh +lL +Kp +eT +fz +Ev +ga +FY +kP +JW +ha +ha +ha +YO +YO +YO +YO +YO +YO +YO +vb +oz +yE +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +iZ +dW +wd +IS +JA +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Zu +Ao +Ao +Ao +Ao +Zu +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +bv +rV +"} +(149,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +Dj +rv +Xn +gg +zN +Me +pd +Ym +Hk +kE +qT +cU +ah +Kp +KT +No +kx +Hz +Ue +Hz +Hz +YO +YO +YO +YO +Vz +re +KO +re +Uf +Nd +vb +Qb +yE +Ji +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +gu +ha +ha +ha +Ke +Uh +ua +su +Ke +Ke +Ke +Ke +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(150,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +TU +KY +ql +Op +Cc +AJ +pd +gS +Hk +kE +qT +hh +ah +wA +KT +pD +kx +Aw +Bc +Zd +kx +Vc +wi +Vc +vb +oh +Hq +Hq +Hq +XA +LZ +vb +MJ +GU +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +Ke +jW +no +Nh +Uh +ji +ji +Ke +Ke +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +fQ +LS +LS +LS +LS +fQ +Ey +Ey +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(151,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ku +Ku +QW +QW +QW +Ky +Ky +QW +QW +Ea +kA +qT +uc +hd +US +Rm +RS +kx +VT +md +zd +kx +sj +mu +ce +vc +ns +Pj +kD +ep +az +aJ +vb +Gw +ja +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +Ke +OC +OC +Ke +SQ +AQ +KR +LF +iC +ZU +Ul +SE +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +xq +xq +xq +xq +xq +xq +gx +gx +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(152,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +Ku +eE +ST +Xl +Da +Rb +Zv +Ky +tS +gt +qT +qT +WQ +WQ +WQ +qT +kx +jO +tu +Zo +kx +HH +Zp +HH +vb +os +gp +Fd +gp +es +Ai +fq +sg +nj +Pt +EQ +Mg +Mg +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +ru +Ke +kZ +Jx +Ke +Mq +bB +SV +LF +BF +qR +qR +SE +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +gx +gx +gx +GE +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(153,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +qQ +Co +mO +uW +PE +Ky +jf +Vf +HG +eQ +sX +Zh +Dd +rk +kx +kx +Mx +LC +kx +vb +dK +vb +vb +vb +vb +vb +vb +qP +vb +vb +QQ +ll +Sp +tO +Vj +UZ +EQ +EQ +CT +CT +oZ +oZ +oZ +CT +oZ +oZ +CT +Gd +gx +gx +gx +gx +gx +gx +gx +gx +gx +EV +iZ +hs +cf +vY +Kz +BA +oH +Pe +uR +aD +aD +Ke +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +fQ +Ha +Ha +Ha +Ha +fQ +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(154,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +EA +Co +mO +Sg +Bg +LV +dr +SX +Ge +JY +zr +Jt +Om +uC +xa +Nk +sE +tW +FQ +am +GQ +ri +PS +bR +HN +BW +sJ +sv +lK +sU +Jl +ll +BM +Zx +Zx +Zx +sU +xs +LE +my +Gb +st +IX +wI +jk +Xz +UE +fb +gx +gx +gx +gx +gx +gx +gx +gx +gx +pS +rr +RL +QC +hr +Gf +Ne +xT +BJ +IM +aD +aD +Ke +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(155,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +qQ +Co +yl +Ks +qu +Yp +xM +QO +Mf +WJ +AU +Sm +tv +Bo +IC +sq +tB +Sm +jt +MK +cQ +gH +Pu +JC +MK +fF +Iq +WR +MK +MK +MK +jb +pt +MK +UM +MK +nD +ix +dF +hi +Hp +TH +lB +dF +Yv +OD +ZI +Ok +gx +gx +gx +gx +gx +gx +gx +gx +gx +BE +Ke +Zq +Zq +ba +LN +CE +LN +Uh +gB +yi +yi +SE +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +gx +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(156,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +Ku +RH +PJ +uL +ao +ER +OT +wl +Wg +SX +EM +DO +UF +UF +UF +UF +ez +tP +Vv +DO +NA +gO +Tk +wW +Ew +Xc +nt +gO +gO +gO +gO +gO +hJ +wW +kY +nt +sI +wW +na +dM +CT +RQ +hB +UA +jE +CT +HD +DC +CT +Ft +gx +gx +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ba +RB +Bh +LN +jr +gc +jI +tQ +SE +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(157,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +mJ +mJ +mJ +mJ +ap +Tg +Yf +Ky +Ns +SD +mH +Ma +vW +zW +wm +Wh +Ma +HM +Zt +Bl +Bl +Bl +Bl +wh +lq +My +SP +SP +SP +SP +wh +wh +TO +TO +WT +TO +TO +ie +cE +rh +CT +CT +CT +CT +CT +CT +Ki +Ki +CT +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ba +Lm +sL +LN +Kh +kX +Ke +Ke +Ke +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(158,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +pE +pE +wE +mJ +mJ +mJ +mJ +mJ +PG +gZ +kG +Uy +Uy +Uy +Uy +Uy +Uy +wZ +bi +Bl +Rk +oB +Bl +lf +fU +xl +ho +gM +gM +cc +cs +wT +vv +sG +pf +Jn +Wr +OF +Kn +pL +LU +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ba +eR +po +ba +dC +dC +Ke +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(159,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +pE +pE +mq +wV +Fm +zE +Lc +mJ +jf +gZ +mL +Uy +RZ +PX +Kv +Jd +Uy +Fv +nW +eh +aa +UW +Bl +Kx +Re +wk +Hl +wo +IZ +IZ +IZ +IZ +TO +bo +qE +Hy +TO +OF +XK +OF +uX +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +cq +fb +fb +fb +cI +ha +ha +ha +ha +ha +ha +ba +ba +ba +ba +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(160,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +Mz +OU +jV +bn +bn +cL +GZ +kb +cP +cM +LH +Uy +ES +mW +Xw +eG +Uy +Yq +cm +Bl +ve +MG +Bl +CA +Km +QA +fr +qe +Bn +BC +BC +Yd +TO +EW +TO +Nb +TO +mi +SS +wD +wD +wv +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +CT +sD +sD +sD +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(161,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +bK +vZ +xp +JD +Mz +dj +Lh +Ix +qK +KM +Uy +Uy +ii +HB +cu +nC +kW +Xk +do +Bl +Bl +Bl +Bl +zl +Ux +fN +YS +nZ +BC +Sr +BC +Sr +TO +Qo +TO +Cp +TO +Fe +VX +OF +xC +ui +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +CT +eK +eK +wH +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(162,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +AP +Bx +ZD +nx +nx +Qk +qF +mJ +et +KM +Uy +Du +WN +kz +Cg +Uy +Uy +uj +Vf +HG +Ef +wh +vG +ZC +FV +bQ +tJ +kJ +BC +BC +BC +ai +TO +TO +TO +TO +TO +vT +VX +jU +OF +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +eK +RP +eK +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +zC +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +Ey +Ey +Ey +bv +bv +rV +"} +(163,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +mJ +AO +Pg +Xy +nz +Pg +AO +mJ +dn +SL +Uy +wn +GH +dc +SR +Uy +co +Fa +Bo +gZ +bx +wh +vR +Mj +Mj +Mj +cd +vy +BC +Sy +BC +Sy +qg +ye +OF +sT +OF +nh +gT +vF +vF +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +lV +eK +gn +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +bv +bv +rV +"} +(164,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +mJ +mJ +hI +gb +gb +hI +uh +uh +vl +PL +uh +AW +Nc +rS +AW +Uy +Ma +zi +Wc +Yk +bu +wh +Ln +Mj +Mj +Mj +cd +kk +BC +BC +BC +Sn +qg +sB +OF +YQ +uX +OF +AM +uX +fG +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +CT +Aj +CT +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +fl +KB +bv +bv +bv +"} +(165,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +gb +gb +gb +gb +uh +lh +zF +SN +uh +uu +Eo +tK +tK +dR +Ma +vf +vf +vf +Ma +Wb +vR +Mj +Mj +Mj +cd +Bu +BC +OM +BC +Wa +qg +UO +OF +lx +uX +jn +AM +qt +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +hC +SG +lA +hC +DP +hC +"} +(166,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +aO +gb +gb +aO +uh +yx +WX +Wo +uh +BB +xI +nw +ze +Er +AW +ha +ha +ha +ha +Wb +mn +Bw +Bw +QX +Rd +hm +BC +BC +BC +Wa +qg +Vh +OF +OF +GV +Uv +La +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +hC +vk +jH +hC +hC +hC +"} +(167,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +mJ +mJ +mJ +mJ +uh +lT +BX +QL +uh +AW +AW +AW +AW +AW +AW +ha +ha +ha +ha +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Fl +Fl +Fl +Fl +ui +ui +ui +ui +ui +ui +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +hC +SG +lA +hC +FH +hC +"} +(168,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +uh +hw +lp +bb +yu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +FA +KB +bv +bv +bv +"} +(169,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +gu +yp +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +uh +uh +vl +rg +uh +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +bv +bv +rV +"} +(170,1,1) = {" +Vg +Wn +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hV +Oa +Qr +Qr +Qr +Qr +Oa +Oa +xQ +bT +bT +bT +bT +iI +NG +CZ +Zy +yu +bT +wJ +wJ +wJ +NM +Oa +Oa +Oa +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Oa +aE +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +il +Na +Na +Na +Na +Na +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +HV +HV +HV +HV +WY +WY +HV +HV +HV +HV +yv +yv +yv +yv +GE +GE +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +PU +PU +PU +PU +PU +PU +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +Sk +Sk +rV +"} +(171,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +gu +ha +ha +ha +ha +iI +yF +fH +ig +yu +ha +gu +gu +gu +gu +gu +gu +gu +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Cf +Cf +Cf +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(172,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +uh +uh +DX +RC +uh +ha +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Cf +Cf +Cf +fQ +xq +xq +fQ +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(173,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +pC +ha +ha +lY +oq +yy +lY +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +jX +xq +xq +VD +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(174,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +ha +ha +ha +ha +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +if +if +jX +xq +xq +cy +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(175,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +ha +ha +zg +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +if +if +FD +xq +xq +cy +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(176,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +FD +xq +xq +JQ +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(177,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +FD +xq +xq +JQ +if +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(178,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +jX +xq +xq +JQ +if +if +if +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(179,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +jX +xq +xq +cy +Cf +Cf +if +if +if +if +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(180,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ec +xq +xq +cy +Cf +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Cf +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(181,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +fQ +xq +xq +fQ +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +bv +bv +rV +"} +(182,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Cf +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(183,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(184,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(185,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(186,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(187,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(188,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(189,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(190,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(191,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(192,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(193,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(194,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(195,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(196,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(197,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(198,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +hE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(199,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(200,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(201,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(202,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +vB +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(203,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(204,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +yT +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(205,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +yT +yT +yT +yT +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(206,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +yT +yT +yT +yT +yT +DQ +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +yT +yT +ip +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(207,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +yT +yT +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(208,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(209,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(210,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(211,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +yT +yT +yT +XE +XE +XE +Vg +"} +(212,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(213,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +bP +bP +bP +WP +yT +yT +yT +yT +DQ +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(214,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(215,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(216,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(217,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(218,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +tY +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(219,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +gD +Gv +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(220,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +tY +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +PO +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(221,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +Mh +tY +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +gD +Gv +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +Mh +tY +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(222,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +Mh +tY +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +Mh +tY +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(223,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +xL +PO +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(224,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +Mh +hO +tY +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(225,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +Mh +tY +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(226,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +xh +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +xh +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +ne +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(227,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(228,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +ne +hO +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +Mh +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +xL +Mh +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(229,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(230,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(231,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(232,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(233,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(234,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(235,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +gD +za +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(236,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Gs +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +gD +Gv +WP +pW +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(237,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Gs +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +gD +za +za +Gv +WP +WP +WP +pW +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(238,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +gD +Gv +WP +WP +WP +WP +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(239,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +yT +WP +WP +yT +yT +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(240,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +yT +yT +yT +yT +Ey +yT +yT +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +Vg +"} +(241,1,1) = {" +OK +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +Kd +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +WP +yT +yT +Ey +Ey +Ey +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +Vg +"} +(242,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +Ey +Ey +Ey +yT +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +Vg +"} +(243,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +PO +WP +WP +yT +Ey +Ey +Ey +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +Vg +"} +(244,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +yT +Ey +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(245,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +WP +WP +yT +yT +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(246,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +WP +yT +yT +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(247,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +pW +za +za +Ka +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +yT +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(248,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +PO +WP +WP +yT +yT +yT +WP +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(249,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +hO +tY +WP +yT +yT +WP +Kd +xh +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(250,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(251,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(252,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Mh +hO +hO +xh +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Mh +tY +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(253,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +pW +Ka +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(254,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +fp +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(255,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +fp +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(256,1,1) = {" +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg "} diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index 0736eaa21e..d896392229 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -2454,6 +2454,25 @@ }, /turf/simulated/floor/tiled/eris/white/cargo, /area/stellardelight/deck2/triage) +"fy" = ( +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/closet/crate/medical{ + desc = "A crate full of emergency supplies to help with response and rescue operations. A logo of NanoTrasen with a checkmark is stamped on the crate."; + name = "NanoTrasen Emergency Supply Crate" + }, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) "fz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -19730,9 +19749,12 @@ }, /turf/simulated/wall/bay/r_wall/steel, /area/engineering/engine_room) +<<<<<<< HEAD "RZ" = ( /turf/simulated/open, /area/maintenance/stellardelight/deck2/portaft) +======= +>>>>>>> 6ca04ed009... Merge pull request #14219 from Heroman3003/stellar-fixes-s "Sb" = ( /turf/simulated/floor/tiled/eris/dark/danger, /area/engineering/engine_room) @@ -33407,7 +33429,11 @@ jU Lx Ld Uj +<<<<<<< HEAD Zj +======= +fy +>>>>>>> 6ca04ed009... Merge pull request #14219 from Heroman3003/stellar-fixes-s Zj rN ry diff --git a/maps/submaps/surface_submaps/wilderness/DoomP.dmm b/maps/submaps/surface_submaps/wilderness/DoomP.dmm index e780dc90ca..3fc2936c43 100644 --- a/maps/submaps/surface_submaps/wilderness/DoomP.dmm +++ b/maps/submaps/surface_submaps/wilderness/DoomP.dmm @@ -64,8 +64,9 @@ /turf/simulated/floor/outdoors/grass/sif/forest, /area/submap/DoomP) "ar" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/grass/sif/forest, +/obj/structure/closet/l3closet/scientist, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "as" = ( /obj/machinery/porta_turret/poi{ @@ -192,6 +193,7 @@ /area/submap/DoomP) "aK" = ( /obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/stolenpackage, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DoomP) "aL" = ( @@ -224,6 +226,9 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, +/obj/machinery/light/small{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/submap/DoomP) "aR" = ( @@ -353,18 +358,21 @@ /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bm" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techfloor, +/obj/effect/floor_decal/borderfloorwhite, +/obj/machinery/light/small, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "bn" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syndie_kit/spy, +/obj/item/weapon/storage/box/handcuffs, /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bo" = ( /obj/structure/table/rack, -/obj/item/weapon/storage/box/smokes, -/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/rig/combat/empty, +/obj/item/weapon/rig/combat/empty, /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bq" = ( @@ -377,16 +385,21 @@ /obj/item/clothing/shoes/boots/tactical, /obj/item/clothing/shoes/boots/tactical, /obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/suit/storage/vest/heavy/merc, /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "br" = ( /obj/structure/table/rack, -/obj/random/energy, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, /obj/random/energy, +/obj/random/energy, +/obj/random/energy/highend, +/obj/random/energy/highend, /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bs" = ( @@ -397,6 +410,8 @@ /obj/item/weapon/gun/projectile/contender, /obj/item/ammo_magazine/s357, /obj/item/ammo_magazine/s357, +/obj/random/projectile/random, +/obj/random/projectile/random, /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bt" = ( @@ -409,19 +424,14 @@ /turf/simulated/floor/tiled/white, /area/submap/DoomP) "bu" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime{ - dir = 5 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "bv" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, +/obj/machinery/light/small, +/turf/simulated/floor/plating, /area/submap/DoomP) "bw" = ( /obj/structure/table/standard, @@ -437,36 +447,29 @@ /turf/simulated/floor/tiled, /area/submap/DoomP) "by" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/submap/DoomP) "bz" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/metalfoam, +/obj/item/weapon/storage/box/smokes, +/turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bA" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "bB" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor, /area/submap/DoomP) "bC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "bD" = ( /obj/effect/floor_decal/corner/lime{ @@ -475,60 +478,45 @@ /turf/simulated/floor/tiled/white, /area/submap/DoomP) "bE" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/light/small{ - dir = 4; - pixel_y = 0 + dir = 4 }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/plating, /area/submap/DoomP) "bF" = ( /obj/machinery/shower{ dir = 1 }, /obj/structure/curtain/open/shower, +/obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled/white, /area/submap/DoomP) "bG" = ( /obj/structure/toilet{ dir = 1 }, +/obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled/white, /area/submap/DoomP) "bH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "bI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, /area/submap/DoomP) "bJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/light/small{ dir = 1 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/sink{ + pixel_y = 16 }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, /area/submap/DoomP) "bK" = ( /obj/structure/lattice, @@ -561,12 +549,447 @@ /turf/simulated/floor/tiled/white, /area/submap/DoomP) "bP" = ( -/obj/random/junk, -/turf/simulated/floor/outdoors/rocks, +/obj/structure/table/standard, +/obj/item/weapon/paper, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/DoomP) "bQ" = ( -/obj/random/junk, -/turf/simulated/floor/outdoors/grass/sif/forest, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"fm" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"gA" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"jD" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/item/toy/plushie/borgplushie/drakiesec, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"kp" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"kI" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"kS" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"kU" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/DoomP) +"lc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/DoomP) +"nX" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/random/thermalponcho, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"og" = ( +/obj/machinery/auto_cloner, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/airless, +/area/template_noop) +"px" = ( +/obj/structure/table/standard, +/obj/item/clothing/head/welding, +/obj/item/weapon/weldingtool, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/monkeycubes, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"pB" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"pL" = ( +/turf/simulated/wall{ + can_open = 1 + }, +/area/submap/DoomP) +"rJ" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"vd" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"vq" = ( +/obj/structure/table/rack, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/weapon/gun/energy/captain/xenoarch, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/gun/energy/captain/xenoarch, +/obj/item/weapon/gun/energy/captain/xenoarch, +/obj/item/weapon/cell/device/weapon/recharge/alien/omni, +/obj/item/weapon/gun/energy/captain/xenoarch, +/turf/simulated/floor/tiled/techfloor, +/area/submap/DoomP) +"vu" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"xE" = ( +/obj/structure/lattice, +/turf/simulated/floor/water/deep, +/area/submap/DoomP) +"yp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/DoomP) +"yF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/lime/full, +/obj/item/toy/plushie/basset, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"BW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/red, +/area/submap/DoomP) +"Cn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/DoomP) +"Db" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/plating, +/area/submap/DoomP) +"FE" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"Hz" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/techfloor, +/area/submap/DoomP) +"Jj" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light/small, +/obj/machinery/artifact, +/turf/simulated/floor/tiled/techfloor, +/area/submap/DoomP) +"Jq" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"JU" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"LU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/computer/general_air_control, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"LW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"Mc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"MQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"Nl" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/tool/screwdriver{ + pixel_y = 15 + }, +/obj/item/weapon/melee/baton/loaded, +/obj/item/device/multitool, +/obj/effect/floor_decal/borderfloorwhite, +/obj/item/weapon/tool/crowbar, +/obj/item/clothing/gloves/sterile/latex, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"OV" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"Pk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/DoomP) +"PU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"Ra" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/DoomP) +"Re" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"TX" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/pancakes/berry, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"Ul" = ( +/obj/structure/table/rack, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/capture_crystal, +/obj/item/weapon/circuitboard/mecha/imperion/main, +/obj/item/weapon/circuitboard/mecha/imperion/targeting, +/obj/item/weapon/cell/device/weapon/recharge/alien/omni, +/obj/item/stack/material/morphium, +/obj/item/stack/material/morphium, +/obj/item/stack/material/morphium, +/obj/item/stack/material/morphium, +/obj/item/stack/material/morphium, +/obj/item/weapon/archaeological_find, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/tiled/techfloor, +/area/submap/DoomP) +"VA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"VC" = ( +/obj/structure/bed/chair, +/mob/living/simple_mob/humanoid/merc/ranged/deagle, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"VV" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/item/toy/plushie/moth, +/turf/simulated/floor/tiled/white, +/area/submap/DoomP) +"Wt" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/mob/living/simple_mob/mechanical/mecha/ripley/pirate/last_stand_merc{ + faction = "syndicate" + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/DoomP) +"Ww" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"Wy" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"WH" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"Xj" = ( +/obj/structure/table/standard, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled, +/area/submap/DoomP) +"XV" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/gun/energy/imperial, +/obj/item/clothing/suit/armor/swat/officer, +/obj/item/clothing/glasses/graviton/medgravpatch, +/obj/item/clothing/head/psy_crown/wrath, +/obj/item/toy/plushie/carp/nebula, +/turf/simulated/floor/plating, +/area/submap/DoomP) +"Yt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/DoomP) +"YT" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/mob/merc/armored, +/turf/simulated/floor/tiled/red, +/area/submap/DoomP) +"Zl" = ( +/obj/machinery/door/airlock/external/bolted, +/turf/simulated/floor/plating, /area/submap/DoomP) (1,1,1) = {" @@ -1775,17 +2198,17 @@ af af af af -af -af -af as af af as ak ak +as ak ak +as +ak ak ak ak @@ -1837,17 +2260,17 @@ af ac ac ac -ac -ac -ac aL af af aX af af +aX ak ak +aX +ak ak ak ak @@ -1896,9 +2319,6 @@ af af af ac -ac -ad -ad ad at at @@ -1909,8 +2329,11 @@ at at at at -af -ak +at +at +at +at +at ak ak ak @@ -1959,20 +2382,20 @@ af ac ac ad -ad -ad -ad at ax aM aY bd -bj -bl -bl at -af -ak +bz +bo +bq +br +at +Hz +vq +at ak ak ak @@ -2020,23 +2443,23 @@ af ac ac ad -ad -ad -ad as at ay aN aN be -at -bm +bj bl +bL +bl +bB at -af -af -ak -ak +Wt +Jj +at +xE +as ak ak ak @@ -2083,20 +2506,20 @@ ac ad ad ad -ad -ad -ad at aA aO -aN +Xj be at bn -bB +bo +bq +bs +at +Hz +Ul at -af -af af af ak @@ -2145,20 +2568,20 @@ ad ad ad ad -ad -ad -ad at ay aN aN bf at -bo -bl at -aL -as +at +at +at +at +bj +at +at af af af @@ -2206,21 +2629,21 @@ ac ad ad ad -ad -ad -ad as at aB -aN +aO bg be at -bq -bL +FE +bH +bH +fm +bH +bH +px at -ac -af af af af @@ -2269,20 +2692,20 @@ aq ad ad ad -ad -ad -ad at ay aN aN bx at -bq -bB -at +LU +pB +vu +kI +bQ +VC bP -ac +at af af af @@ -2330,9 +2753,6 @@ ad ad ad ad -ad -ad -ar at at az @@ -2340,11 +2760,14 @@ aP aP bM at -br -bl +yp +Ra +lc +VA +bQ +bQ +Nl at -ad -ac af af af @@ -2392,9 +2815,6 @@ ad ad ad ad -ad -ad -ad au at aC @@ -2402,13 +2822,16 @@ aQ aZ aP at -bs -bl +og +Zl +YT +bQ +kS +bQ +gA at -ad -ac -af -af +aX +as af af af @@ -2454,9 +2877,6 @@ ad ad aq ad -ad -ad -ad av at at @@ -2464,11 +2884,14 @@ at at bh at +Pk +Ra +BW +VA +bQ +bQ +bA at -at -at -ad -ac af af af @@ -2516,9 +2939,6 @@ ad ad ad ad -ad -ad -ad av aw aD @@ -2526,11 +2946,14 @@ aP ba aP at -bt +Yt +bH +bH +Re bC +bQ +bm at -ad -ac ac af af @@ -2578,9 +3001,6 @@ ac ad ad ad -ad -ad -ad av at at @@ -2588,11 +3008,14 @@ at at bN at +MQ bu -bD +bu +PU +bu +bu +Ww at -bK -as ac ac af @@ -2640,9 +3063,6 @@ ac ad ad ad -ad -ad -ad au at aE @@ -2650,11 +3070,14 @@ aR at bi at -bv -bD -bH -ad -ad +at +WH +at +at +at +at +at +at ad ac af @@ -2702,22 +3125,22 @@ ac ad ah ad -ad -ad -ar at at aF -aS +kU at aP at -bw -bD +ar +JU +JU +as +at bI +XV +at ad -ad -bQ ac af af @@ -2765,22 +3188,22 @@ ad ad ad ad -ad -ad -ad at aF aS at aP -at +bh +JU +Wy +JU bv -bD -bI -ad -ad -ad -ac +at +pL +at +at +bK +as af af af @@ -2826,9 +3249,6 @@ ad ad ad ad -ad -ad -ad as at aF @@ -2836,11 +3256,14 @@ aS at aP at -bO -bD -bI -ad -ad +JU +JU +JU +as +at +bJ +bF +at ad ac af @@ -2889,20 +3312,20 @@ ad ad ac ad -ad -ad -ad at aG aT at aP -bk -by +at +Db bE -bJ -ad -ad +Db +at +at +LW +bG +at ad ac af @@ -2951,20 +3374,20 @@ ac am ac ac -ad -ad -ad at aH aU bb aP at +at +at +at +at +at bk at at -bK -as ac ac af @@ -3012,9 +3435,6 @@ ac af af af -ac -ac -ad as at aI @@ -3022,12 +3442,15 @@ aV bc bi at -bz -bF +bt +Mc +jD +OV +VV +OV +yF at ac -ac -ac af af af @@ -3075,20 +3498,20 @@ af af af af -ac -ac -ad at aJ aW at aP at -bk +nX +Jq +bw +bD +bO +kp +TX at -at -bP -af af af af @@ -3137,22 +3560,22 @@ af af af af -af -ac -ac at aK aV at aP +bk +rJ +by +by +by +by +by +vd at -bA -bG -at -af -af -af -af +aX +as af af af @@ -3199,9 +3622,6 @@ af af af af -af -af -af at at at @@ -3209,6 +3629,11 @@ at at at at +Pk +Cn +Cn +Cn +Ra at at af @@ -3218,8 +3643,6 @@ af af af af -af -af ak ak ak @@ -3263,17 +3686,17 @@ af af af af -af -af -af aX af af aX af af +aX af af +aX +af af af af @@ -3325,17 +3748,17 @@ af af af af -af -af -af as af af as af af +as af af +as +af af af af diff --git a/maps/submaps/surface_submaps/wilderness/Manor1.dmm b/maps/submaps/surface_submaps/wilderness/Manor1.dmm index a9fc9053bd..3df6ee1299 100644 --- a/maps/submaps/surface_submaps/wilderness/Manor1.dmm +++ b/maps/submaps/surface_submaps/wilderness/Manor1.dmm @@ -307,9 +307,7 @@ /area/submap/Manor1) "bi" = ( /obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/holofloor/wood{ - icon_state = "wood_broken0" - }, +/turf/simulated/floor/holofloor/wood, /area/submap/Manor1) "bj" = ( /obj/effect/decal/cleanable/cobweb, @@ -396,6 +394,11 @@ /obj/item/clothing/suit/storage/hooded/wintercoat/kilanocoat, /obj/item/clothing/head/hood/winter, /obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/ammo_magazine/m75, +/obj/item/ammo_magazine/m75, +/obj/item/ammo_magazine/m75, +/obj/item/ammo_magazine/m75, +/obj/item/ammo_magazine/m75, /turf/simulated/floor/holofloor/wood, /area/submap/Manor1) "bz" = ( @@ -641,6 +644,7 @@ /obj/item/stack/material/tritium{ amount = 20 }, +/obj/item/weapon/cell/super, /turf/simulated/floor/holofloor/wood, /area/submap/Manor1) "co" = ( @@ -1237,6 +1241,9 @@ /obj/structure/loot_pile/surface/bones, /obj/effect/spider/stickyweb, /obj/item/weapon/gun/projectile/gyropistol, +/obj/item/ammo_magazine/m75, +/obj/item/ammo_magazine/m75, +/obj/item/ammo_magazine/m75, /turf/simulated/floor/carpet/purcarpet, /area/submap/Manor1) "GM" = ( diff --git a/maps/submaps/surface_submaps/wilderness/xenohive.dmm b/maps/submaps/surface_submaps/wilderness/xenohive.dmm index 5e0a2158f4..f5e0bb748a 100644 --- a/maps/submaps/surface_submaps/wilderness/xenohive.dmm +++ b/maps/submaps/surface_submaps/wilderness/xenohive.dmm @@ -533,6 +533,7 @@ /obj/effect/alien/weeds, /obj/structure/prop/transmitter, /obj/effect/decal/cleanable/dirt, +/obj/item/device/gps/internal/poi, /turf/simulated/floor, /area/submap/XenoHive) "Vj" = ( diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index c632e6626f..5cf93fed90 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -9043,6 +9043,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) +"aoR" = ( +/obj/machinery/light/small, +/obj/machinery/firework_launcher, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) "aoS" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, @@ -33190,10 +33195,6 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) -"fna" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) "fpU" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/hidden/green, @@ -45294,6 +45295,116 @@ aad aad aad aad +<<<<<<< HEAD +======= +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +bqI +pZb +rBG +mhu +xFG +bqI +txZ +uge +gCa +aXs +aXD +gCa +fCk +fCk +exW +bJz +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahL +acV +adF +ahl +apj +apj +apj +apl +apl +apl +apl +apl +apj +apj +apj +apj +auK +avh +abm +abn +abn +abn +acx +afg +aoR +abm +aCm +akg +aDy +akj +aCV +aCV +szT +jSU +alW +amd +alW +ams +amy +amL +amL +amW +adn +adn +adn +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +>>>>>>> 5dad1cf58a... Merge pull request #14245 from Heroman3003/firework-stuff aad aad aad diff --git a/modular_chomp/code/datums/supplypacks/medical.dm b/modular_chomp/code/datums/supplypacks/medical.dm new file mode 100644 index 0000000000..9c2328878e --- /dev/null +++ b/modular_chomp/code/datums/supplypacks/medical.dm @@ -0,0 +1,8 @@ +/datum/supply_pack/med/glucose_hypos + name = "Glucose Hypoinjectors" + contains = list( + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5 + ) + cost = 25 + containertype = /obj/structure/closet/crate/zenghu + containername = "Glucose Hypo Crate" diff --git a/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm index d942579f16..034459d944 100644 --- a/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm +++ b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm @@ -14,8 +14,12 @@ name = "Dangerous drone carrier" starts_with = list(/mob/living/simple_mob/vore/sect_drone) - /obj/structure/largecrate/animal/bugsect/Initialize() starts_with = list(pick(/mob/living/simple_mob/vore/sect_drone, /mob/living/simple_mob/vore/sect_queen)) return ..() + +/obj/structure/largecrate/animal/swoopie + name = "SWOOPIE XL CleanBot Starter Kit" + desc = "WARNING: HAZARDOUS CONTENTS. HANDLE WITH CAUTION. Consult spiritual observer intervention to avoid rogue units. (That means ghosts. Ominous.)" + starts_with = list(/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie) diff --git a/modular_chomp/code/game/objects/structures/loot_pile.dm b/modular_chomp/code/game/objects/structures/loot_pile.dm index c233078e85..ae71c9b397 100644 --- a/modular_chomp/code/game/objects/structures/loot_pile.dm +++ b/modular_chomp/code/game/objects/structures/loot_pile.dm @@ -9,4 +9,5 @@ common_loot = list(/obj/item/weapon/a_gift/advanced) pixel_x = -32 bound_width = 96 - bound_height = 64 \ No newline at end of file + bound_height = 64 + density = 1 diff --git a/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm b/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm index c296140050..9e1c264ac7 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm @@ -122,3 +122,10 @@ ..() verbs |= /mob/living/simple_mob/proc/use_headset verbs |= /mob/living/simple_mob/proc/use_pda + +/mob/living/simple_mob/update_icon() + . = ..() + for(var/belly_class in vore_fullness_ex) + var/vs_fullness = vore_fullness_ex[belly_class] + if(vs_fullness > 0) + add_overlay("[icon_state]_[belly_class]-[vs_fullness]") diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm new file mode 100644 index 0000000000..d64661a83c --- /dev/null +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm @@ -0,0 +1,130 @@ +/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie + name = "SWOOPIE XL" + desc = "A large birdlike robot with thick assets, plump belly, and a long elastic vacuum hose of a neck. Somehow still a cleanbot, even if just for its duties." + icon_state = "swoopie" + icon_living = "swoopie" + icon_dead = "swoopie_dead" + icon_rest = "swoopie_rest" + icon = 'modular_chomp/icons/mob/vore64x64_ch.dmi' + vis_height = 64 + has_eye_glow = TRUE + custom_eye_color = "#00CC00" + mount_offset_y = 30 + vore_capacity_ex = list("stomach" = 1, "neck1" = 1, "neck2" = 1, "neck3" = 1, "neck4" = 1) + vore_fullness_ex = list("stomach" = 0, "neck1" = 0, "neck2" = 0, "neck3" = 0, "neck4" = 0) + vore_icon_bellies = list("stomach", "neck1", "neck2", "neck3", "neck4") + vore_icons = 0 + vore_pounce_chance = 100 + vore_pounce_maxhealth = 125 + has_hands = TRUE + adminbus_trash = TRUE //You know what, sure whatever. It's not like anyone's gonna be taking this bird on unga trips to be their gamer backpack, which kinda was the main reason for the trash eater restrictions in the first place anyway. + faction = "neutral" + +/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/init_vore() + if(!voremob_loaded) + return + verbs |= /mob/living/proc/eat_trash + var/obj/belly/B = new /obj/belly/(src) + B.affects_vore_sprites = TRUE + B.belly_sprite_to_affect = "stomach" + B.name = "Churno-Vac" + B.desc = "With an abrupt loud WHUMP after a very sucky trip through the hungry bot's vacuum tube, you finally spill out into its waste container, where everything the bot slurps off the floors ends up for swift processing among the caustic sludge, efficiently melting everything down into a thin slurry to fuel its form. More loose dirt and debris occasionally raining in from above as the bot carries on with its duties to keep the station nice and clean." + B.digest_messages_prey = list("Under the heat and internal pressure of the greedy machine's gutworks, you can feel the tides of the hot caustic sludge claiming the last bits of space around your body, a few more squeezes of the synthetic muscles squelching and glurking as your body finally loses its form, completely blending down and merging into the tingly sludge to fuel the mean machine.") + B.digest_mode = DM_DIGEST + B.item_digest_mode = IM_DIGEST + B.digest_burn = 3 + B.fancy_vore = 1 + B.vore_sound = "Stomach Move" + B.belly_fullscreen = "anim_belly" + B.belly_fullscreen_color = "#3e2f27" + B.sound_volume = 25 + B.count_items_for_sprite = TRUE + + B = new /obj/belly/longneck/(src) + B.affects_vore_sprites = TRUE + B.belly_sprite_to_affect = "neck4" + B.name = "vacuum hose 4" + B.autotransferlocation = "Churno-Vac" + B.desc = "Thank you for your biofuel contribution~" + B.fancy_vore = 1 + B.vore_sound = "Stomach Move" + B.sound_volume = 20 + + B = new /obj/belly/longneck/(src) + B.affects_vore_sprites = TRUE + B.belly_sprite_to_affect = "neck3" + B.name = "vacuum hose 3" + B.autotransferlocation = "vacuum hose 4" + B.desc = "Looks like it's gonna be all downhill from here..." + B.fancy_vore = 1 + B.vore_sound = "Stomach Move" + B.sound_volume = 40 + + B = new /obj/belly/longneck/(src) + B.affects_vore_sprites = TRUE + B.belly_sprite_to_affect = "neck2" + B.name = "vacuum hose 2" + B.autotransferlocation = "vacuum hose 3" + B.desc = "It feels very tight in here..." + B.fancy_vore = 1 + B.vore_sound = "Stomach Move" + B.sound_volume = 80 + + B = new /obj/belly/longneck/(src) + B.affects_vore_sprites = TRUE + B.belly_sprite_to_affect = "neck1" + B.name = "vacuum hose" + B.autotransferlocation = "vacuum hose 2" + B.fancy_vore = 1 + B.vore_sound = "Stomach Move" + B.sound_volume = 100 + + B = new /obj/belly/longneck(src) + B.affects_vore_sprites = FALSE + B.name = "Vac-Beak" + B.desc = "SNAP! You have been sucked up into the big synthbird's beak, the powerful vacuum within the bird roaring somewhere beyond the abyssal deep gullet hungrily gaping before you, eagerly sucking you deeper inside towards a long bulgy ride down the bird's vacuum hose of a neck!" + B.autotransferlocation = "vacuum hose" + B.autotransfer_max_amount = 0 + B.autotransferwait = 60 + + vore_selected = B + +/obj/belly/longneck + affects_vore_sprites = TRUE + belly_sprite_to_affect = "neck1" + name = "vacuum hose" + desc = "With a mighty WHUMP, the suction of the big bird's ravenous vacuum system has sucked you up out of the embrace of its voracious main beak and into a tight bulge squeezing along the long ribbed rubbery tube leading towards the roaring doom of the synthetic bird's efficient waste disposal system." + digest_mode = DM_HOLD + item_digest_mode = IM_HOLD + autotransfer_enabled = TRUE + autotransferchance = 100 + autotransferwait = 70 + autotransferlocation = "Churno-Vac" + vore_verb = "suck" + belly_fullscreen_color = "#4d4d4d" + belly_fullscreen = "a_tumby" + human_prey_swallow_time = 1 + nonhuman_prey_swallow_time = 1 + autotransfer_max_amount = 2 + count_items_for_sprite = TRUE + item_multiplier = 10 + health_impacts_size = FALSE + speedy_mob_processing = TRUE + +/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/Life() + . =..() + for(var/obj/belly/L in vore_organs) //Speedrun that autotransfer at 2s ticks instead of 6s + if(L.speedy_mob_processing) + L.process() + var/turf/T = get_turf(src) + if(istype(T)) + for(var/obj/O in T) + if(O.clean_blood()) + adjust_nutrition(1) + if(istype(T, /turf/simulated)) + var/turf/simulated/S = T + if(T.clean_blood()) + adjust_nutrition(1) + if(S.dirt > 50) + S.dirt = 0 + adjust_nutrition(1) diff --git a/modular_chomp/code/modules/power/cells/device_cells.dm b/modular_chomp/code/modules/power/cells/device_cells.dm index 93bc939176..3621572bfa 100644 --- a/modular_chomp/code/modules/power/cells/device_cells.dm +++ b/modular_chomp/code/modules/power/cells/device_cells.dm @@ -89,7 +89,7 @@ name = "giga device power cell" desc = "A small power cell that holds a blistering amount of energy, constructed by clever scientists using secrets gleaned from alien technology." icon_state = "meb_m_hi" - maxcharge = 6000 + maxcharge = 10000 charge_amount = 20 origin_tech = list(TECH_POWER = 5, TECH_PRECURSOR = 1) @@ -161,9 +161,10 @@ catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_void_cell) icon = 'icons/obj/abductor.dmi' icon_state = "cell" - charge_amount = 120 // 5%. + maxcharge = 3600 + charge_amount = 180 // 5%. charge_delay = 50 // Every five seconds, bit faster than the default. - origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6) + origin_tech = list(TECH_POWER = 7, TECH_ENGINEERING = 5, TECH_PHORON = 5, TECH_ARCANE = 1, TECH_PRECURSOR = 1) /obj/item/weapon/cell/device/weapon/recharge/alien/update_icon() return // No overlays please. @@ -224,10 +225,10 @@ /obj/item/weapon/cell/device/weapon/recharge/alien/omni name = "omni weapon power cell" desc = "A mix between alien technology and phoron tech. Seems to fit in almost any cell slot..." - charge_amount = 90 // 5%. - maxcharge = 1800 - charge_delay = 50 SECONDS - origin_tech = list(TECH_POWER = 6, TECH_ENGINEERING = 4, TECH_PHORON = 3) + charge_amount = 240 // 5%. + maxcharge = 4800 + charge_delay = 50 + origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6, TECH_PHORON = 6, TECH_ARCANE = 2, TECH_PRECURSOR = 2) /obj/item/weapon/cell/device/weapon/recharge/alien/omni/empty/Initialize() . = ..() diff --git a/modular_chomp/code/modules/power/cells/power_cells.dm b/modular_chomp/code/modules/power/cells/power_cells.dm index a374ffb9af..24e1045b62 100644 --- a/modular_chomp/code/modules/power/cells/power_cells.dm +++ b/modular_chomp/code/modules/power/cells/power_cells.dm @@ -160,8 +160,9 @@ origin_tech = list(TECH_POWER = 4, TECH_BIO = 5) icon = 'icons/mob/slimes.dmi' //'icons/obj/harvest.dmi' icon_state = "yellow slime extract" //"potato_battery" - description_info = "This 'cell' holds a max charge of 10k and self recharges over time." - maxcharge = 10000 + description_info = "This 'cell' holds a max charge of 20k and self recharges over time." + maxcharge = 20000 + charge_amount = 1000 // 5%. matter = null self_recharge = TRUE standard_overlays = FALSE diff --git a/modular_chomp/code/modules/research/designs/power_cells.dm b/modular_chomp/code/modules/research/designs/power_cells.dm index 174c3aa6df..891c5ce05e 100644 --- a/modular_chomp/code/modules/research/designs/power_cells.dm +++ b/modular_chomp/code/modules/research/designs/power_cells.dm @@ -113,8 +113,8 @@ /datum/design/item/powercell/advance_device_recharge name = "device, advanced recharging" id = "recharging_advanced_device" - req_tech = list(TECH_POWER = 5, TECH_MATERIAL = 4, TECH_PHORON = 4, TECH_PRECURSOR = 2) - materials = list(MAT_STEEL = 1500, MAT_GLASS = 100, MAT_MORPHIUM = 100, MAT_PHORON = 500, MAT_DURASTEEL = 500, MAT_URANIUM = 200, MAT_VERDANTIUM = 150) + req_tech = list(TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6) + materials = list(MAT_STEEL = 1000, MAT_GLASS = 400, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 200, MAT_VERDANTIUM = 150, MAT_PHORON = 2000) build_path = /obj/item/weapon/cell/device/weapon/recharge category = list("Misc") sort_string = "BAABE" diff --git a/modular_chomp/icons/mob/vore64x64_ch.dmi b/modular_chomp/icons/mob/vore64x64_ch.dmi index 3327715d4c..46320f4870 100644 Binary files a/modular_chomp/icons/mob/vore64x64_ch.dmi and b/modular_chomp/icons/mob/vore64x64_ch.dmi differ diff --git a/tgui/packages/tgui/interfaces/AppearanceChanger.js b/tgui/packages/tgui/interfaces/AppearanceChanger.js index 088306b969..23fd8d8ebb 100644 --- a/tgui/packages/tgui/interfaces/AppearanceChanger.js +++ b/tgui/packages/tgui/interfaces/AppearanceChanger.js @@ -18,6 +18,7 @@ export const AppearanceChanger = (props, context) => { ear_style, tail_style, wing_style, + markings, change_race, change_gender, change_eye_color, @@ -128,6 +129,9 @@ export const AppearanceChanger = (props, context) => { setTabIndex(7)}> Wing + setTabIndex(8)}> + Markings + ) : null} {change_facial_hair ? ( @@ -145,6 +149,7 @@ export const AppearanceChanger = (props, context) => { {change_hair && tabIndex === 5 ? : null} {change_hair && tabIndex === 6 ? : null} {change_hair && tabIndex === 7 ? : null} + {change_hair && tabIndex === 8 ? : null} @@ -383,3 +388,28 @@ const AppearanceChangerWings = (props, context) => { ); }; + +const AppearanceChangerMarkings = (props, context) => { + const { act, data } = useBackend(context); + + const { markings } = data; + + return ( +
+ +
+ ); +}; diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js index 3357ef5109..8c3d51da50 100644 --- a/tgui/packages/tgui/interfaces/VorePanel.js +++ b/tgui/packages/tgui/interfaces/VorePanel.js @@ -49,7 +49,7 @@ const digestModeToPreyMode = { * show_liq, liq_interacts, liq_reagent_gen, liq_reagent_type, liq_reagent_name, * liq_reagent_transfer_verb, liq_reagent_nutri_rate, liq_reagent_capacity, liq_sloshing, liq_reagent_addons, * show_liq_fullness, liq_messages, liq_msg_toggle1, liq_msg_toggle2, liq_msg_toggle3, liq_msg_toggle4, - * liq_msg_toggle5, liq_msg1, liq_msg2, liq_msg3, liq_msg4, liq_msg5, sound_volume, + * liq_msg_toggle5, liq_msg1, liq_msg2, liq_msg3, liq_msg4, liq_msg5, sound_volume, egg_name, * * To the tabs section of VoreSelectedBelly return * setTabIndex(5)}> @@ -649,6 +649,7 @@ const VoreSelectedBellyOptions = (props, context) => { contaminate_flavor, contaminate_color, egg_type, + egg_name, selective_preference, save_digest_mode, vorespawn_blacklist, @@ -776,6 +777,13 @@ const VoreSelectedBellyOptions = (props, context) => { content={capitalize(egg_type)} /> + +